diff options
author | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 09:56:06 -0700 |
---|---|---|
committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 14:52:15 -0700 |
commit | 43478c60394e09246ee6275f89ae434e429cc5b5 (patch) | |
tree | 07c7cf589827d53212e38f54cc84bc88d56a1b5d /tests/test_grouping.py | |
parent | 745df4576efca44b226bcdca33f718a5fa670eab (diff) | |
download | sqlparse-typo.tar.gz |
Fix typostypo
Diffstat (limited to 'tests/test_grouping.py')
-rw-r--r-- | tests/test_grouping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_grouping.py b/tests/test_grouping.py index 1f3a19e..f26f8b3 100644 --- a/tests/test_grouping.py +++ b/tests/test_grouping.py @@ -283,7 +283,7 @@ def test_grouping_alias_case(): def test_grouping_subquery_no_parens(): # Not totally sure if this is the right approach... - # When a THEN clause contains a subquery w/o parens around it *and* + # When a THEN clause contains a subquery w/o parenthesis around it *and* # a WHERE condition, the WHERE grouper consumes END too. # This takes makes sure that it doesn't fail. p = sqlparse.parse('CASE WHEN 1 THEN select 2 where foo = 1 end')[0] |