diff options
| author | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-08-22 19:52:23 -0700 |
|---|---|---|
| committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-08-22 19:52:23 -0700 |
| commit | e29fbf01a7eba050782eca3e0a3c250763ce23ac (patch) | |
| tree | c60557ce8749267d6fa031fccdb3618160694965 /tests | |
| parent | ae0532678b0fdc859cae021ee135579d875a24a8 (diff) | |
| download | sqlparse-e29fbf01a7eba050782eca3e0a3c250763ce23ac.tar.gz | |
Fix test that wasn't running
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_regressions.py | 2 |
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' |
