diff options
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 05141a4..59b8e72 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -20,7 +20,7 @@ class SQLParseTest(TestCaseBase): def test_multistatement(self): sql1 = 'select * from foo;' sql2 = 'select * from bar;' - stmts = sqlparse.parse(sql1+sql2) + stmts = sqlparse.parse(sql1 + sql2) self.assertEqual(len(stmts), 2) self.assertEqual(str(stmts[0]), sql1) self.assertEqual(str(stmts[1]), sql2) |
