diff options
| author | David Bremner <david@tethera.net> | 2017-04-04 21:36:29 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-04-06 14:37:02 -0300 |
| commit | ec3937b5cd2884504d5536dc8631a15fd506050b (patch) | |
| tree | 9158c071262416c5aa9bf184c3fde508dfe4fee7 /test/T390-python.sh | |
| parent | 33e58021958f8069ad46d7bd05cf586676fb6ae7 (diff) | |
test: standardize argument order to test_expect_equal_file
It is annoying to debug failing tests when the interpretation of the
diffs is reversed for some tests.
Diffstat (limited to 'test/T390-python.sh')
| -rwxr-xr-x | test/T390-python.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/T390-python.sh b/test/T390-python.sh index b27f0740..a9a61145 100755 --- a/test/T390-python.sh +++ b/test/T390-python.sh @@ -16,7 +16,7 @@ for t in q_new.search_threads(): print (t.get_thread_id()) EOF notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED -test_expect_equal_file OUTPUT EXPECTED +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "compare message ids" test_python <<EOF @@ -28,7 +28,7 @@ for m in q_new.search_messages(): print (m.get_message_id()) EOF notmuch search --sort=oldest-first --output=messages tag:inbox | sed s/^id:// > EXPECTED -test_expect_equal_file OUTPUT EXPECTED +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "get non-existent file" test_python <<EOF |
