Skip to content

Commit 71c21d2

Browse files
committed
Fix tokenzier test
1 parent 788d11b commit 71c21d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/test/erlang/tokenizer_test.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ unquoted_atom_test() ->
6161
[{atom, {1, 1, _}, '&&'}] = tokenize(":&&").
6262

6363
quoted_atom_test() ->
64-
[{atom_quoted, {1, 1, nil}, 'foo bar'}] = tokenize(":\"foo bar\"").
64+
[{atom_quoted, {1, 1, $"}, 'foo bar'}] = tokenize(":\"foo bar\"").
6565

6666
oversized_atom_test() ->
6767
OversizedAtom = string:copies("a", 256),

0 commit comments

Comments
 (0)