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.
2 parents dafb523 + a2abfb4 commit d466054Copy full SHA for d466054
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