diff options
-rw-r--r-- | ext/gmp/tests/bug32773.phpt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/gmp/tests/bug32773.phpt b/ext/gmp/tests/bug32773.phpt index 0890362c7d..feb9d8d755 100644 --- a/ext/gmp/tests/bug32773.phpt +++ b/ext/gmp/tests/bug32773.phpt @@ -2,10 +2,8 @@ Bug #32773 binary GMP functions returns unexpected value, when second parameter is int(0) --SKIPIF-- <?php if (!extension_loaded("gmp")) print "skip"; ?> ---POST-- ---GET-- --FILE-- -<? +<?php echo '10 + 0 = ', gmp_strval(gmp_add(10, 0)), "\n"; echo '10 + "0" = ', gmp_strval(gmp_add(10, '0')), "\n"; |