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>
This commit is contained in:
Matthew DeVore
2018-10-05 14:54:04 -07:00
committed by Junio C Hamano
parent bdbc17e86a
commit dcbaa0b361
32 changed files with 112 additions and 112 deletions

View File

@ -45,7 +45,7 @@ test_expect_success 'update git svn-cloned repo' '
git svn rebase &&
echo a > expect &&
echo b >> expect &&
test_cmp a expect &&
test_cmp expect a &&
rm expect
)
'
@ -69,7 +69,7 @@ test_expect_success 'update git svn-cloned repo' '
git svn rebase &&
echo a > expect &&
echo b >> expect &&
test_cmp a expect &&
test_cmp expect a &&
rm expect
)
'
@ -93,7 +93,7 @@ test_expect_success 'update git svn-cloned repo again' '
echo a > expect &&
echo b >> expect &&
echo c >> expect &&
test_cmp a expect &&
test_cmp expect a &&
rm expect
)
'