summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVictor Uriarte <victor.m.uriarte@intel.com>2016-08-22 19:52:23 -0700
committerVictor Uriarte <victor.m.uriarte@intel.com>2016-08-22 19:52:23 -0700
commite29fbf01a7eba050782eca3e0a3c250763ce23ac (patch)
treec60557ce8749267d6fa031fccdb3618160694965 /tests
parentae0532678b0fdc859cae021ee135579d875a24a8 (diff)
downloadsqlparse-e29fbf01a7eba050782eca3e0a3c250763ce23ac.tar.gz
Fix test that wasn't running
Diffstat (limited to 'tests')
-rw-r--r--tests/test_regressions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_regressions.py b/tests/test_regressions.py
index e8e327b..b978071 100644
--- a/tests/test_regressions.py
+++ b/tests/test_regressions.py
@@ -310,7 +310,7 @@ def test_issue207_runaway_format():
" from dual) t0"])
-def token_next_doesnt_ignore_skip_cm():
+def test_token_next_doesnt_ignore_skip_cm():
sql = '--comment\nselect 1'
tok = sqlparse.parse(sql)[0].token_next(-1, skip_cm=True)[1]
assert tok.value == 'select'