Skip to content

Commit

Permalink
Fix PHP 5.3 tests (default encoding)
Browse files Browse the repository at this point in the history
  • Loading branch information
damienalexandre committed Dec 13, 2015
1 parent da606a7 commit 4e8350f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/JoliTypo/Tests/JoliTypoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public function testNonHTMLContent()
NOT_HTML;

$this->assertEquals($fixed, $fixer->fix($toFix));
$this->assertEquals(html_entity_decode($fixed), $fixer->fixString($toFix));
$this->assertEquals(html_entity_decode($fixed, null, 'UTF-8'), $fixer->fixString($toFix));
$this->assertEquals('Here is a “protip©”!', $fixer->fixString('Here is a "protip(c)"!'));
}
}
Expand Down

0 comments on commit 4e8350f

Please sign in to comment.