Skip to content

Commit 4a11372

Browse files
committed
Fix Test (2nd time)
1 parent 5e0a3ed commit 4a11372

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ext/standard/tests/serialize/003.phpt

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ foreach(array(1e2, 5.2e25, 85.29e-23, 9e-9) AS $value) {
1111
echo "\n";
1212
}
1313
?>
14-
--EXPECT--
14+
--EXPECTREGEX--
1515
d:100;
16-
float(100)
16+
float\(100\)
1717

18-
d:5.2E+25;
19-
float(5.2E+25)
18+
d:5\.2E\+25;
19+
float\(5\.2E\+25\)
2020

21-
d:8.528999999999999914734871708787977695465087890625E-22;
22-
float(8.529E-22)
21+
d:8\.528999999999999914734871708787977695465087890625E-22;
22+
float\(8\.529E-22\)
2323

24-
d:9.E-9;
25-
float(9.E-9)
24+
d:9\.[0-9]*E-9;
25+
float\(9\.E-9\)

0 commit comments

Comments
 (0)