]> granicus.if.org Git - php/commitdiff
Fix test expectation for PHP 8.0
authorChristoph M. Becker <cmbecker69@gmx.de>
Fri, 5 Feb 2021 13:55:26 +0000 (14:55 +0100)
committerChristoph M. Becker <cmbecker69@gmx.de>
Fri, 5 Feb 2021 13:55:26 +0000 (14:55 +0100)
Since float to string conversion is no longer locale dependent, we have
to expect a dot as decimal separator.

ext/mysqli/tests/bug74779.phpt

index 3aa44e92807689558fec93a306212bc5afdece20..3b4ca8adcef7d123b2e90cbf27e7f11add268034 100644 (file)
@@ -38,5 +38,5 @@ mysqli_close($link);
 --EXPECT--
 array(1) {
   ["ST_Y(Point(56.7, 53.34))"]=>
-  float(53,34)
+  float(53.34)
 }