summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
diff options
context:
space:
mode:
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)]