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_parse.py | |
parent | 745df4576efca44b226bcdca33f718a5fa670eab (diff) | |
download | sqlparse-typo.tar.gz |
Fix typostypo
Diffstat (limited to 'tests/test_parse.py')
-rw-r--r-- | tests/test_parse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py index 4ba6ca1..b6f4fff 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -270,8 +270,8 @@ def test_array_literal(): def test_typed_array_definition(): - # array indices aren't grouped with builtins, but make sure we can extract - # indentifer names + # array indices aren't grouped with built-ins, but make sure we can extract + # identifier names p = sqlparse.parse('x int, y int[], z int')[0] names = [x.get_name() for x in p.get_sublists() if isinstance(x, sql.Identifier)] |