diff --git a/tests/lex/test_lex.py b/tests/lex/test_lex.py index 06ac7eb..0172242 100644 --- a/tests/lex/test_lex.py +++ b/tests/lex/test_lex.py @@ -83,7 +83,7 @@ def test_lex_symbols(): assert objs == [HySymbol("foo")] -def test_lex_symbols(): +def test_lex_strings(): """ Make sure that strings are valid expressions""" objs = tokenize("\"foo\" ") assert objs == [HyString("foo")]