From a36008a235e31bc24b9d42a3a69b479031f024f9 Mon Sep 17 00:00:00 2001 From: Victor Uriarte Date: Mon, 22 Aug 2016 19:29:45 -0700 Subject: Unify_naming_schema. Closes #283 --- tests/test_grouping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_grouping.py b/tests/test_grouping.py index be03110..8b986c2 100644 --- a/tests/test_grouping.py +++ b/tests/test_grouping.py @@ -51,7 +51,7 @@ def test_grouping_identifiers(): s = "INSERT INTO `test` VALUES('foo', 'bar');" parsed = sqlparse.parse(s)[0] - types = [l.ttype for l in parsed.tokens if not l.is_whitespace()] + types = [l.ttype for l in parsed.tokens if not l.is_whitespace] assert types == [T.DML, T.Keyword, None, T.Keyword, None, T.Punctuation] s = "select 1.0*(a+b) as col, sum(c)/sum(d) from myschema.mytable" -- cgit v1.2.1