Skip to content

Commit 4ff8d9f

Browse files
authored
ext/uri: Remove bool type coercions in tests (#18921)
1 parent c26105d commit 4ff8d9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/uri/tests/053.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ try {
2525
}
2626

2727
try {
28-
$r->__construct("baz", [], false);
28+
$r->__construct("baz", [], 0);
2929
} catch (Error $e) {
3030
echo $e->getMessage() . "\n";
3131
}
3232

3333
try {
34-
$r->__construct("qax", [], false, null);
34+
$r->__construct("qax", [], 0, null);
3535
} catch (Error $e) {
3636
echo $e->getMessage() . "\n";
3737
}

0 commit comments

Comments
 (0)