We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd4e800 commit 95140aeCopy full SHA for 95140ae
crates/pgt_lexer/src/lib.rs
@@ -236,8 +236,8 @@ mod tests {
236
// Check that we have exactly one newline token between "select" and "1"
237
assert_eq!(tokens[0].kind, SyntaxKind::Select);
238
assert_eq!(tokens[1].kind, SyntaxKind::Newline);
239
- assert_eq!(tokens[1].kind, SyntaxKind::Whitespace);
240
- assert_eq!(tokens[2].kind, SyntaxKind::Iconst);
+ assert_eq!(tokens[2].kind, SyntaxKind::Whitespace);
+ assert_eq!(tokens[3].kind, SyntaxKind::Iconst);
241
}
242
243
#[test]
0 commit comments