diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:03:58 +0100 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:03:58 +0100 |
| commit | f7e07b7b61be4befd5eaafce93aeb0238c884315 (patch) | |
| tree | d2e43fddb59e18ead4d4672ccddeca11d77b76fa /tests/test_parse.py | |
| parent | c6f210e65a9b9e91683e62134eb654d8c00a92d8 (diff) | |
| download | sqlparse-f7e07b7b61be4befd5eaafce93aeb0238c884315.tar.gz | |
Code cleanup in tests.
Diffstat (limited to 'tests/test_parse.py')
| -rw-r--r-- | tests/test_parse.py | 2 |
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()] |
