diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-04 20:47:52 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | bd446b6123e0b077a48e9f1e836affac78822f44 (patch) | |
tree | 67be9838c95e03e967c59992d34e18c2ca1947ea /integration_tests/tests/test_html5lib.rs | |
parent | 4e0057344381a50cd76419be170eab3d9389f034 (diff) |
chore: rename internal states as well
See the previous commit.
Diffstat (limited to 'integration_tests/tests/test_html5lib.rs')
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index 010fd44..2d3e4cb 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -135,9 +135,9 @@ fn run_test_inner<R, O, E, T>( println!("description: {}", test.description); tokenizer.set_internal_state(match state { InitialState::Data => InternalState::Data, - InitialState::PlainText => InternalState::PlainText, - InitialState::RcData => InternalState::RcData, - InitialState::RawText => InternalState::RawText, + InitialState::Plaintext => InternalState::Plaintext, + InitialState::Rcdata => InternalState::Rcdata, + InitialState::Rawtext => InternalState::Rawtext, InitialState::ScriptData => InternalState::ScriptData, InitialState::CdataSection => InternalState::CdataSection, }); |