summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYago Riveiro <yago.riveiro@gmail.com>2013-04-26 18:39:04 +0100
committerYago Riveiro <yago.riveiro@gmail.com>2013-04-26 18:39:04 +0100
commite1a1370729a3d74711a6ec7b3b7ce904d31a8d84 (patch)
tree0e82b78341d8cc7ee4745e5ab145730f1f0ec306
parent9ea900cac02c60beb61a688539a17c552cf21373 (diff)
downloadsqlparse-e1a1370729a3d74711a6ec7b3b7ce904d31a8d84.tar.gz
Fixed lack of a new line before function in test_format.py.
-rw-r--r--tests/test_format.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_format.py b/tests/test_format.py
index 1d92f3d..6daf5a3 100644
--- a/tests/test_format.py
+++ b/tests/test_format.py
@@ -163,6 +163,7 @@ class TestFormatReindent(TestCaseBase):
'from foo',
'straight_join bar on 1 = 2']
))
+
def test_identifier_list(self):
f = lambda sql: sqlparse.format(sql, reindent=True)
s = 'select foo, bar, baz from table1, table2 where 1 = 2'