summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2013-05-10 05:41:51 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2013-05-10 05:41:51 +0200
commit706977ad962e4c476fc908ccb463f4079dedb650 (patch)
tree1dd1068b6ef7a682d937e3b5f062029f47774456 /tests
parentf14d17e2fabad1f57c77ff10573a4d8248270d96 (diff)
downloadsqlparse-706977ad962e4c476fc908ccb463f4079dedb650.tar.gz
Update authors and changelog.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py
index ab4e674..7016af9 100644
--- a/tests/test_parse.py
+++ b/tests/test_parse.py
@@ -107,7 +107,7 @@ class SQLParseTest(TestCaseBase):
self.assertEqual(len(t), 1)
self.assert_(isinstance(t[0], sqlparse.sql.Identifier))
- def test_function_parameter(self): # see issue94
+ def test_function_parameter(self): # see issue94
t = sqlparse.parse('abs(some_col)')[0].tokens[0].get_parameters()
self.assertEqual(len(t), 1)
self.assert_(isinstance(t[0], sqlparse.sql.Identifier))