From fd99f497a40ae4e860e7994c9707c8b4ec814ffc Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Thu, 11 Apr 2013 08:26:56 +0200 Subject: [PATCH] Fixed typo in test_lex.py --- tests/lex/test_lex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")]