We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b9bd3 commit 29e9a0bCopy full SHA for 29e9a0b
tests/testutils.py
@@ -55,9 +55,9 @@ def file_objects_equal(
55
stdout = io.StringIO()
56
with contextlib.redirect_stdout(stdout):
57
filecmp.dircmp(a, b).report_full_closure()
58
- match = re.search("Differing files|Only in", stdout.getvalue())
59
- if match is None:
60
- return True
+ match = re.search("Differing files|Only in", stdout.getvalue())
+ if match is None:
+ return True
61
print(stdout.getvalue()) # pragma: no cover
62
return False # pragma: no cover
63
0 commit comments