diff options
author | Matthew DeVore <matvore@google.com> | 2018-10-05 21:54:04 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-06 23:51:18 (GMT) |
commit | dcbaa0b361f5bebcbe6eca446819fadd02083461 (patch) | |
tree | 5424e437cc8b6a0665061a4dc4686200ff35f894 /t/t4138-apply-ws-expansion.sh | |
parent | bdbc17e86abe2471c4bd0d52cdc004835cb7bb3e (diff) | |
download | git-dcbaa0b361f5bebcbe6eca446819fadd02083461.zip git-dcbaa0b361f5bebcbe6eca446819fadd02083461.tar.gz git-dcbaa0b361f5bebcbe6eca446819fadd02083461.tar.bz2 |
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 't/t4138-apply-ws-expansion.sh')
-rwxr-xr-x | t/t4138-apply-ws-expansion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4138-apply-ws-expansion.sh b/t/t4138-apply-ws-expansion.sh index 0ffe33f..3b636a6 100755 --- a/t/t4138-apply-ws-expansion.sh +++ b/t/t4138-apply-ws-expansion.sh @@ -114,7 +114,7 @@ for t in 1 2 3 4 do test_expect_success 'apply with ws expansion (t=$t)' ' git apply patch$t.patch && - test_cmp test-$t expect-$t + test_cmp expect-$t test-$t ' done |