diff options
| -rw-r--r-- | integration_tests/tests/test_html5lib.rs | 8 | 
1 files changed, 1 insertions, 7 deletions
| diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index 8afa033..32dccd4 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -336,13 +336,7 @@ fn run_test_inner<R: Reader>(      assert_eq!(test.output.0, actual_tokens); -    if !matches!( -        (fname, test_i), -        // TODO: html5lib-tests bug? -        ("test3.test", 79) -    ) { -        assert_eq!(test.errors, actual_errors); -    } +    assert_eq!(test.errors, actual_errors);  }  /// Implements the escape sequences described in the tokenizer tests of html5lib-tests (and nothing | 
