File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ def test_call(self, mocker):
188
188
189
189
def test_repr_with_no_name (self , mocker ):
190
190
stub = mocker .stub ()
191
- assert not "name" in repr (stub )
191
+ assert "name" not in repr (stub )
192
192
193
193
def test_repr_with_name (self , mocker ):
194
194
test_name = "funny walk"
@@ -628,7 +628,7 @@ def test_assert_called_with_unicode_arguments(mocker):
628
628
629
629
630
630
def test_plain_stopall (testdir ):
631
- """Calling patch.stopall() in a test would cause an error during unconfigure (#137)"""
631
+ """patch.stopall() in a test should not cause an error during unconfigure (#137)"""
632
632
testdir .makepyfile (
633
633
"""
634
634
import random
Original file line number Diff line number Diff line change @@ -21,3 +21,6 @@ commands = pre-commit run --all-files --show-diff-on-failure
21
21
22
22
[pytest]
23
23
addopts = -ra
24
+
25
+ [flake8]
26
+ max-line-length = 88
You can’t perform that action at this time.
0 commit comments