diff options
author | Bruce Wells <brucekwells@gmail.com> | 2020-02-07 20:27:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 20:27:48 +0300 |
commit | 0eeed45566ec7bac6865cb6d30acb5777ccf6f43 (patch) | |
tree | 08f466dfb6e945eb4f6b1b826307d33b2aa7ecb2 /tests | |
parent | 43790a456e8ec4104895869b178165fec65613d7 (diff) | |
parent | 2db48eff956f5a63513685cb5b576b588c698912 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'tests')
-rw-r--r-- | tests/MathTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/MathTest.php b/tests/MathTest.php index 1ffa5ae..0de2465 100644 --- a/tests/MathTest.php +++ b/tests/MathTest.php @@ -73,11 +73,11 @@ class MathTest extends \PHPUnit\Framework\TestCase ['hypot(1.5, 3.5)'], ['intdiv(10, 2)'], ['log(1.5)'], - ['log10(1.5)'], + ['log10(1.5)'], ['log1p(1.5)'], ['max(1.5, 3.5)'], ['min(1.5, 3.5)'], - ['octdec(1.5)'], + ['octdec("15")'], ['pi()'], ['pow(1.5, 3.5)'], ['rad2deg(1.5)'], @@ -85,7 +85,7 @@ class MathTest extends \PHPUnit\Framework\TestCase ['sin(1.5)'], ['sinh(1.5)'], ['sqrt(1.5)'], - ['tan(1.5)'], + ['tan(1.5)'], ['tanh(1.5)'], ['0.1 + 0.2'], |