Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaytaph committed Aug 13, 2023
1 parent 4fc270a commit 54c7f89
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/html5_parser/consume_char_refs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,17 +263,19 @@ mod tests {
token_0: ("
", "str[
]")
token_1: ("�", "str[�]")
token_2: ("�", "str[�]")
token_3: ("�", "str[�]")
token_4: ("�", "str[�]")
token_3: ("�", "str[�]") // replace with replacement char
token_4: ("�", "str[�]") // replace with replacement char
token_5: ("뻯", "str[뻯]")
token_6: ("", "str[]")
token_6: ("", "str[]") // reserved codepoint
token_7: ("&#;", "str[&]")
token_8: ("&;", "str[&]")
token_9: ("&", "str[&]")
token_10: ("", "str[]")
token_11: ("", "str[]")
token_12: ("	", "str[	]")
token_13: ("", "str[]")
token_14: ("", "str[]")
token_10: ("", "str[]") // reserved codepoint
token_11: ("", "str[]") // reserved codepoint
token_12: ("", "str[]") // reserved codepoint
token_13: ("", "str[]") // reserved codepoint
token_14: ("	", "str[	]")
token_15: ("", "str[]") // reserved codepoint
token_16: ("", "str[]") // reserved codepoint
}
}

0 comments on commit 54c7f89

Please sign in to comment.