Skip to content

Commit da54c39

Browse files
committed
Fix line length
1 parent 7c37c7f commit da54c39

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_regressions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,8 @@ def test_issue315_utf8_by_default():
346346

347347

348348
def test_issue322_concurrently_is_keyword():
349-
p = sqlparse.parse('CREATE INDEX CONCURRENTLY myindex ON mytable(col1);')[0]
349+
s = 'CREATE INDEX CONCURRENTLY myindex ON mytable(col1);'
350+
p = sqlparse.parse(s)[0]
350351

351352
assert len(p.tokens) == 12
352353
assert p.tokens[0].ttype is T.Keyword.DDL # CREATE

0 commit comments

Comments
 (0)