summaryrefslogtreecommitdiff
path: root/test/HTML5/ScannerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/ScannerTest.php')
-rw-r--r--test/HTML5/ScannerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/HTML5/ScannerTest.php b/test/HTML5/ScannerTest.php
index 8c341fa..997123c 100644
--- a/test/HTML5/ScannerTest.php
+++ b/test/HTML5/ScannerTest.php
@@ -25,7 +25,6 @@ class ScannerTest extends TestCase {
public function testNext() {
$s = new Scanner(new StringInputStream("abc"));
- $this->assertEquals('a', $s->next());
$this->assertEquals('b', $s->next());
$this->assertEquals('c', $s->next());
}
@@ -42,7 +41,7 @@ class ScannerTest extends TestCase {
public function testPeek() {
$s = new Scanner(new StringInputStream("abc"));
- // The scanner is currently pointed before a.
+
$this->assertEquals('b', $s->peek());
$s->next();