summaryrefslogtreecommitdiff
path: root/tests/test_split.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_split.py')
-rw-r--r--tests/test_split.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_split.py b/tests/test_split.py
index 321fca2..f0b6dda 100644
--- a/tests/test_split.py
+++ b/tests/test_split.py
@@ -111,7 +111,8 @@ class SQLSplitTest(TestCaseBase):
def test_if_function(self): # see issue 33
# don't let IF as a function confuse the splitter
- sql = ('CREATE TEMPORARY TABLE tmp SELECT IF(a=1, a, b) AS o FROM one; '
+ sql = ('CREATE TEMPORARY TABLE tmp '
+ 'SELECT IF(a=1, a, b) AS o FROM one; '
'SELECT t FROM two')
stmts = sqlparse.split(sql)
self.assertEqual(len(stmts), 2)