diff options
author | Matthew DeVore <matvore@google.com> | 2018-10-05 23:54:04 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-07 01:51:18 +0200 |
commit | dcbaa0b361f5bebcbe6eca446819fadd02083461 (patch) | |
tree | 5424e437cc8b6a0665061a4dc4686200ff35f894 /t/t9604-cvsimport-timestamps.sh | |
parent | tests: standardize pipe placement (diff) | |
download | git-dcbaa0b361f5bebcbe6eca446819fadd02083461.tar.xz git-dcbaa0b361f5bebcbe6eca446819fadd02083461.zip |
t/*: fix ordering of expected/observed arguments
Fix various places where the ordering was obviously wrong, meaning it
was easy to find with grep.
Signed-off-by: Matthew DeVore <matvore@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t9604-cvsimport-timestamps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9604-cvsimport-timestamps.sh b/t/t9604-cvsimport-timestamps.sh index a4b3db24bd..2ff4aa932d 100755 --- a/t/t9604-cvsimport-timestamps.sh +++ b/t/t9604-cvsimport-timestamps.sh @@ -31,7 +31,7 @@ test_expect_success PERL 'check timestamps are UTC (TZ=CST6CDT)' ' Rev 2 2005-02-01 00:00:00 +0000 Rev 1 2005-01-01 00:00:00 +0000 EOF - test_cmp actual-1 expect-1 + test_cmp expect-1 actual-1 ' test_expect_success PERL 'check timestamps with author-specific timezones' ' @@ -65,7 +65,7 @@ test_expect_success PERL 'check timestamps with author-specific timezones' ' Rev 2 2005-01-31 18:00:00 -0600 User Two Rev 1 2005-01-01 00:00:00 +0000 User One EOF - test_cmp actual-2 expect-2 + test_cmp expect-2 actual-2 ' test_done |