summaryrefslogtreecommitdiff
path: root/test/HTML5/Parser/StringInputStreamTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/Parser/StringInputStreamTest.php')
-rw-r--r--test/HTML5/Parser/StringInputStreamTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/HTML5/Parser/StringInputStreamTest.php b/test/HTML5/Parser/StringInputStreamTest.php
index 3ee768a..f87cc10 100644
--- a/test/HTML5/Parser/StringInputStreamTest.php
+++ b/test/HTML5/Parser/StringInputStreamTest.php
@@ -176,7 +176,7 @@ class StringInputStreamTest extends \Masterminds\HTML5\Tests\TestCase
// Replace NULL with Unicode replacement.
$stream = new StringInputStream("\0\0\0");
$this->assertEquals("\xEF\xBF\xBD\xEF\xBF\xBD\xEF\xBF\xBD", $stream->remainingChars(), 'Null character should be replaced by U+FFFD');
- $this->assertEquals(3, count($stream->errors), 'Null character should set parse error: ' . print_r($stream->errors, TRUE));
+ $this->assertEquals(3, count($stream->errors), 'Null character should set parse error: ' . print_r($stream->errors, true));
// Remove CR when next to LF.
$stream = new StringInputStream("\r\n");