summaryrefslogtreecommitdiff
path: root/test/HTML5/Html5Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/Html5Test.php')
-rw-r--r--test/HTML5/Html5Test.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/HTML5/Html5Test.php b/test/HTML5/Html5Test.php
index 851b2e4..2b46b23 100644
--- a/test/HTML5/Html5Test.php
+++ b/test/HTML5/Html5Test.php
@@ -129,18 +129,18 @@ class Html5Test extends TestCase
{
$html5 = $this->getInstance();
$options = $html5->getOptions();
- $this->assertEquals(FALSE, $options['encode_entities']);
+ $this->assertEquals(false, $options['encode_entities']);
$html5 = $this->getInstance(array(
'foo' => 'bar',
- 'encode_entities' => TRUE
+ 'encode_entities' => true
));
$options = $html5->getOptions();
$this->assertEquals('bar', $options['foo']);
- $this->assertEquals(TRUE, $options['encode_entities']);
+ $this->assertEquals(true, $options['encode_entities']);
// Need to reset to original so future tests pass as expected.
- // $this->getInstance()->setOption('encode_entities', FALSE);
+ // $this->getInstance()->setOption('encode_entities', false);
}
public function testSvg()