Skip to content

Commit ea7bebf

Browse files
authored
Merge pull request #198 from pmfirestone/rust2
Change expected value in simple lexer test.
2 parents 35f28c9 + 1a9c7e3 commit ea7bebf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

syncode/parsers/rust_parser/src/lexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ mod tests {
596596

597597
// Should have 2 tokens: "hello" and "world"
598598
// (plus one EOF marker)
599-
assert_eq!(tokens.len(), 3);
599+
assert_eq!(tokens.len(), 2);
600600

601601
// Check the first token
602602
match &tokens[0] {

0 commit comments

Comments
 (0)