diff options
Diffstat (limited to 'integration_tests')
| -rw-r--r-- | integration_tests/tests/test_html5lib.rs | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index 36fb880..0040a01 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -68,13 +68,15 @@ fn test_tokenizer_file(path: &Path) {  fn run_test(fname: &str, test_i: usize, test: Test) {      for state in &test.initial_states { +        // TODO: test BasicEmitter here once it's implemented +          run_test_inner(              fname,              test_i,              &test,              state,              Tokenizer::new(&test.input, TracingEmitter::default()), -            "string", +            "TracingEmitter string",          );          run_test_inner( @@ -86,7 +88,7 @@ fn run_test(fname: &str, test_i: usize, test: Test) {                  BufReader::new(test.input.as_bytes()),                  TracingEmitter::default(),              ), -            "bufread", +            "TracingEmitter bufread",          );      }  } | 
