Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgutierrez committed Nov 3, 2014
1 parent 3bf51af commit 92250ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion unit-tests/Extension/BitwiseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function testBitwise()
$this->assertTrue($t->complex21And() === 1.0);
$this->assertTrue($t->complex22And() === 0.0);
$this->assertTrue($t->complex23And() === 1.0);
$this->assertTrue($t->complex24And() === 0.0);
$this->assertTrue($t->complex24And() === 0);

// OR TESTS
$this->assertTrue($t->intOr() === 3);
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/Extension/StringTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function testMultilineStrings()
$this->assertEquals($hardcodedString, ob_get_clean());
$this->assertEquals(trim($hardcodedString), $t->testTrimMultilineString());

$escapedString = '\"}$hello$\"\'';
$escapedString = '\"\}\$hello\$\"\\\'';
$this->assertEquals($escapedString, $t->testWellEscapedMultilineString());
}
}

0 comments on commit 92250ef

Please sign in to comment.