We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f882515 commit 490c3d9Copy full SHA for 490c3d9
1 file changed
tests/test_regressions.py
@@ -277,8 +277,8 @@ def test_issue186_get_type():
277
def test_issue212_py2unicode():
278
t1 = sql.Token(T.String, u'schöner ')
279
t2 = sql.Token(T.String, 'bug')
280
- l = sql.TokenList([t1, t2])
281
- assert str(l) == 'schöner bug'
+ token_list = sql.TokenList([t1, t2])
+ assert str(token_list) == 'schöner bug'
282
283
284
def test_issue213_leadingws():
0 commit comments