diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 19:45:41 +0100 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 19:45:41 +0100 |
| commit | 4aff8c729adc8363ffd23b593b9d4b729487cde8 (patch) | |
| tree | 644208608ca94cc5dc94df1f5440646f796a5dbf /tests | |
| parent | 6a3effa490bf8486714f1bc1f6cb2f5db8a3fee8 (diff) | |
| download | sqlparse-4aff8c729adc8363ffd23b593b9d4b729487cde8.tar.gz | |
Fix tab expansion for Python 3.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_tokenize.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_tokenize.py b/tests/test_tokenize.py index ceaf24e..619aefd 100644 --- a/tests/test_tokenize.py +++ b/tests/test_tokenize.py @@ -73,8 +73,6 @@ class TestTokenize(unittest.TestCase): self.assertEqual(tokens[2][0], Number.Integer) self.assertEqual(tokens[2][1], '-1') - # Somehow this test fails on Python 3.2 - @pytest.mark.skipif('sys.version_info >= (3,0)') def test_tab_expansion(self): s = "\t" lex = lexer.Lexer() |
