Skip to content

Commit

Permalink
tests: fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jul 8, 2024
1 parent e0db729 commit 699137e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser-ng/src/tokenizer/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ fn regexps() {
assert_eq!(lexer.next_token(), None);

let mut lexer = super::Tokenizer::new(r#"///"#.as_bytes());
assert_eq!(lexer.next_token(), Some(Token::UNKNOWN(Span(0..3))));
assert_eq!(lexer.next_token(), Some(Token::COMMENT(Span(0..3))));
assert_eq!(lexer.next_token(), None);
}

Expand Down

0 comments on commit 699137e

Please sign in to comment.