Skip to content

Commit

Permalink
Fix bad test (#9735)
Browse files Browse the repository at this point in the history
Co-authored-by: bogdan kyryliuk <bogdankyryliuk@dropbox.com>
  • Loading branch information
bkyryliuk and bogdan-dbx authored May 5, 2020
1 parent 865a909 commit 11972ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sql_parse_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def test_comment_breakdown_statements(self):
SELECT * FROM birth_names;
-- some comment
"""
parsed = sql_parse.ParsedQuery(multi_sql)
parsed = ParsedQuery(multi_sql)
statements = parsed.get_statements()
self.assertEqual(len(statements), 1)
expected = ["SELECT * FROM birth_names"]
Expand Down

0 comments on commit 11972ed

Please sign in to comment.