summaryrefslogtreecommitdiff
path: root/tests/test_grouping.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_grouping.py')
-rw-r--r--tests/test_grouping.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_grouping.py b/tests/test_grouping.py
index c3039b8..119f574 100644
--- a/tests/test_grouping.py
+++ b/tests/test_grouping.py
@@ -114,7 +114,7 @@ class TestGrouping(TestCaseBase):
s = 'select x from (select y from foo where bar = 1) z'
p = sqlparse.parse(s)[0]
self.ndiffAssertEqual(s, p.to_unicode())
- self.assertTrue(isinstance(p.tokens[-3].tokens[-1], Where))
+ self.assertTrue(isinstance(p.tokens[-3].tokens[-2], Where))
def test_typecast(self):
s = 'select foo::integer from bar'