summaryrefslogtreecommitdiff
path: root/ext/mysqli
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2021-02-05 14:55:26 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2021-02-05 14:55:26 +0100
commitf23bfc4b43ecee99c81171116db9d92e61b6492d (patch)
treed6e67c3b4aa6bc40ed939eef82eb8aa165d1db52 /ext/mysqli
parent95e405023e3e9896f6f47fa2b346499a7adcca08 (diff)
downloadphp-git-f23bfc4b43ecee99c81171116db9d92e61b6492d.tar.gz
Fix test expectation for PHP 8.0
Since float to string conversion is no longer locale dependent, we have to expect a dot as decimal separator.
Diffstat (limited to 'ext/mysqli')
-rw-r--r--ext/mysqli/tests/bug74779.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug74779.phpt b/ext/mysqli/tests/bug74779.phpt
index 3aa44e9280..3b4ca8adce 100644
--- a/ext/mysqli/tests/bug74779.phpt
+++ b/ext/mysqli/tests/bug74779.phpt
@@ -38,5 +38,5 @@ mysqli_close($link);
--EXPECT--
array(1) {
["ST_Y(Point(56.7, 53.34))"]=>
- float(53,34)
+ float(53.34)
}