Fixed typo in test_lex.py

This commit is contained in:
Konrad Hinsen 2013-04-11 08:26:56 +02:00
parent 4f98ea22e8
commit fd99f497a4

View File

@ -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")]