summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
diff options
context:
space:
mode:
authorVictor Uriarte <victor.m.uriarte@intel.com>2017-11-29 09:56:06 -0700
committerVictor Uriarte <victor.m.uriarte@intel.com>2017-11-29 14:52:15 -0700
commit43478c60394e09246ee6275f89ae434e429cc5b5 (patch)
tree07c7cf589827d53212e38f54cc84bc88d56a1b5d /tests/test_parse.py
parent745df4576efca44b226bcdca33f718a5fa670eab (diff)
downloadsqlparse-typo.tar.gz
Fix typostypo
Diffstat (limited to 'tests/test_parse.py')
-rw-r--r--tests/test_parse.py4
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)]