LibWeb: Update TestHTMLTokenizer's expected token hash

The output of the tokenizer changed in commit:
b193351a99.
This commit is contained in:
Timothy Flynn 2022-02-13 12:07:44 -05:00 committed by Linus Groh
parent 3243091c0d
commit 7e63f0eb32
Notes: sideshowbarker 2024-07-17 18:54:43 +09:00

View file

@ -206,5 +206,5 @@ TEST_CASE(regression)
auto file_contents = file.value()->read_all();
auto tokens = run_tokenizer(file_contents);
u32 hash = hash_tokens(tokens);
EXPECT_EQ(hash, 2203864459u);
EXPECT_EQ(hash, 1280197787u);
}