Skip to content

Commit 00cf383

Browse files
committed
Canonicalizer test fixed for PHP < 5.6
1 parent b517b02 commit 00cf383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Util/CanonicalizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function canonicalizeProvider()
2828
{
2929
return array(
3030
array('FOO', 'foo'),
31-
array(chr(171), '?'),
31+
array(chr(171), PHP_VERSION_ID < 50600 ? chr(171) : '?'),
3232
);
3333
}
3434
}

0 commit comments

Comments
 (0)