diff options
| author | Yago Riveiro <yago.riveiro@gmail.com> | 2013-04-26 18:39:04 +0100 |
|---|---|---|
| committer | Yago Riveiro <yago.riveiro@gmail.com> | 2013-04-26 18:39:04 +0100 |
| commit | e1a1370729a3d74711a6ec7b3b7ce904d31a8d84 (patch) | |
| tree | 0e82b78341d8cc7ee4745e5ab145730f1f0ec306 | |
| parent | 9ea900cac02c60beb61a688539a17c552cf21373 (diff) | |
| download | sqlparse-e1a1370729a3d74711a6ec7b3b7ce904d31a8d84.tar.gz | |
Fixed lack of a new line before function in test_format.py.
| -rw-r--r-- | tests/test_format.py | 1 |
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' |
