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 32baf14 commit a2abfb4Copy full SHA for a2abfb4
tests/utils.py
@@ -36,6 +36,7 @@ def _check(this_input_content, which_check):
36
(which_check, this_input_content, output_content, expected_content))
37
38
_check(input_content, "output check failed")
39
- _check(expected_content, "idempotence check failed")
+ if input_content != expected_content:
40
+ _check(expected_content, "idempotence check failed")
41
finally:
42
shutil.rmtree(tmpdirname)
0 commit comments