diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2020-11-03 17:38:09 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2020-11-13 17:18:20 +1100 |
| commit | 309fb822e6f24de54dbd107d4573a3bedac0bf9e (patch) | |
| tree | 3c461da2179965f0fc64abdbe2eaba9205dbf415 /tests | |
| parent | cc2a35b7b241e7eda031db424bf9b3afb8b6204b (diff) | |
tests/run-multitests.py: Fix diff order, show changes relative to truth.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-multitests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-multitests.py b/tests/run-multitests.py index ad032df38..5b8e70e92 100755 --- a/tests/run-multitests.py +++ b/tests/run-multitests.py @@ -389,7 +389,7 @@ def run_tests(test_files, instances_truth, instances_test): print("### TRUTH ###") print(output_truth, end="") print("### DIFF ###") - print_diff(output_test, output_truth) + print_diff(output_truth, output_test) if cmd_args.show_output: print() |
