diff options
author | Bruce Wells <brucekwells@gmail.com> | 2019-12-01 02:41:36 +0300 |
---|---|---|
committer | Bruce Wells <brucekwells@gmail.com> | 2019-12-01 02:47:04 +0300 |
commit | 2db48eff956f5a63513685cb5b576b588c698912 (patch) | |
tree | dd8e7f7ff8b59ff8eff7c5a71364e0c452fe8684 /tests | |
parent | 84f3f967b71fc39bf61be13e46c89158ad0a34a9 (diff) |
PHP 7.4 support
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 27817db..391408e 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'], |