sort out flake8 issues and unicode name usage

This commit is contained in:
Ronny Pfannschmidt
2018-05-23 18:12:04 +02:00
parent 703e4b11ba
commit 3e08c4ee64
18 changed files with 73 additions and 80 deletions

View File

@@ -847,7 +847,7 @@ class TestSorting(object):
assert fn1 == fn2
assert fn1 != modcol
if sys.version_info < (3, 0):
assert cmp(fn1, fn2) == 0
assert cmp(fn1, fn2) == 0 # NOQA
assert hash(fn1) == hash(fn2)
fn3 = testdir.collect_by_name(modcol, "test_fail")