Fix typo in test in HeaderLexerTests

This commit is contained in:
Jan 2023-06-18 13:47:39 +02:00
parent 6c164eee61
commit 63b9fa6841

View File

@ -255,7 +255,7 @@ namespace test::parsing::header::impl::header_lexer
ExpectIdentifierToken(lexer, "a"); ExpectIdentifierToken(lexer, "a");
ExpectIdentifierToken(lexer, "b"); ExpectIdentifierToken(lexer, "b");
ExpectFloatingPointToken(lexer, 36.999); ExpectFloatingPointToken(lexer, 36.999);
ExpectFloatingPointToken(lexer, 59595.2412); ExpectFloatingPointToken(lexer, 59595.2414);
ExpectIdentifierToken(lexer, "c"); ExpectIdentifierToken(lexer, "c");
} }