pyflakes fix
This commit is contained in:
parent
fd211bf490
commit
2981bece55
|
@ -1214,7 +1214,7 @@ def raises(expected_exception, *args, **kwargs):
|
||||||
assert 1 == 1 # this will execute as expected
|
assert 1 == 1 # this will execute as expected
|
||||||
raise OSError(errno.EEXISTS, 'directory exists')
|
raise OSError(errno.EEXISTS, 'directory exists')
|
||||||
|
|
||||||
assert err.errno = errno.EEXISTS # this will now execute
|
assert err.errno = errno.EEXISTS # this will now execute
|
||||||
|
|
||||||
Or you can specify a callable by passing a to-be-called lambda::
|
Or you can specify a callable by passing a to-be-called lambda::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue