Skip to content

Commit 490c3d9

Browse files
committed
Fix flake8 warning with newer flake8 version
Report "ambiguous variable name 'l'", replace with a more descriptive name.
1 parent f882515 commit 490c3d9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_regressions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ def test_issue186_get_type():
277277
def test_issue212_py2unicode():
278278
t1 = sql.Token(T.String, u'schöner ')
279279
t2 = sql.Token(T.String, 'bug')
280-
l = sql.TokenList([t1, t2])
281-
assert str(l) == 'schöner bug'
280+
token_list = sql.TokenList([t1, t2])
281+
assert str(token_list) == 'schöner bug'
282282

283283

284284
def test_issue213_leadingws():

0 commit comments

Comments
 (0)