summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 20:03:58 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2015-10-26 20:03:58 +0100
commitf7e07b7b61be4befd5eaafce93aeb0238c884315 (patch)
treed2e43fddb59e18ead4d4672ccddeca11d77b76fa /tests/test_parse.py
parentc6f210e65a9b9e91683e62134eb654d8c00a92d8 (diff)
downloadsqlparse-f7e07b7b61be4befd5eaafce93aeb0238c884315.tar.gz
Code cleanup in tests.
Diffstat (limited to 'tests/test_parse.py')
-rw-r--r--tests/test_parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py
index fb7b24b..2ea0f40 100644
--- a/tests/test_parse.py
+++ b/tests/test_parse.py
@@ -221,7 +221,7 @@ def test_sqlite_identifiers():
assert (len(p) == 1
and isinstance(p[0], sqlparse.sql.IdentifierList)
and [id.get_name() for id in p[0].get_identifiers()]
- == ['[col1]', '[col2]'])
+ == ['[col1]', '[col2]'])
p = sqlparse.parse('[col1]+[col2]')[0]
types = [tok.ttype for tok in p.flatten()]