Skip to content

Commit fa2df7e

Browse files
Christian Joudreyleebyron
authored andcommitted
Fix typo in block string lexer test (#1108)
1 parent 8f2db6a commit fa2df7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/language/__tests__/lexer-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ describe('Lexer', () => {
301301
});
302302

303303
expect(
304-
lexOne('" white space "')
304+
lexOne('""" white space """')
305305
).to.containSubset({
306-
kind: TokenKind.STRING,
306+
kind: TokenKind.BLOCK_STRING,
307307
start: 0,
308-
end: 15,
308+
end: 19,
309309
value: ' white space '
310310
});
311311

0 commit comments

Comments
 (0)