Skip to content

Commit

Permalink
Fix test of wrong operator in self_xor.phpt
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoebi committed Dec 2, 2016
1 parent 68558ab commit 3c1a0d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Zend/tests/self_xor.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ var_dump($s1);
$s2 ^= 33;
var_dump($s2);

$s3 |= " ";
$s3 ^= " ";
var_dump($s3);

$s4 |= " ";
$s4 ^= " ";
var_dump($s4);

echo "Done\n";
Expand All @@ -30,6 +30,6 @@ echo "Done\n";
int(109)
int(11)
int(45312)
string(1) "f"
string(2) "ff"
Done
string(1) "F"
string(2) "FF"
Done

0 comments on commit 3c1a0d7

Please sign in to comment.