summaryrefslogtreecommitdiff
path: root/tests/test_format.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_format.py')
-rw-r--r--tests/test_format.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_format.py b/tests/test_format.py
index 67377ab..342fe09 100644
--- a/tests/test_format.py
+++ b/tests/test_format.py
@@ -436,12 +436,12 @@ class TestFormatReindent(object):
s = 'select foo, bar, baz from table where foo in (1, 2,3)'
assert f(s) == '\n'.join([
'select foo',
- ' , bar',
- ' , baz',
+ ' , bar',
+ ' , baz',
'from table',
'where foo in (1',
- ' , 2',
- ' , 3)'])
+ ' , 2',
+ ' , 3)'])
def test_identifier_list_with_functions(self):
f = lambda sql: sqlparse.format(sql, reindent=True)