Skip to content

Commit 95140ae

Browse files
committed
ups
1 parent fd4e800 commit 95140ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/pgt_lexer/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ mod tests {
236236
// Check that we have exactly one newline token between "select" and "1"
237237
assert_eq!(tokens[0].kind, SyntaxKind::Select);
238238
assert_eq!(tokens[1].kind, SyntaxKind::Newline);
239-
assert_eq!(tokens[1].kind, SyntaxKind::Whitespace);
240-
assert_eq!(tokens[2].kind, SyntaxKind::Iconst);
239+
assert_eq!(tokens[2].kind, SyntaxKind::Whitespace);
240+
assert_eq!(tokens[3].kind, SyntaxKind::Iconst);
241241
}
242242

243243
#[test]

0 commit comments

Comments
 (0)