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:

committed by
Junio C Hamano

parent
bdbc17e86a
commit
dcbaa0b361
@ -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
|
||||
)
|
||||
'
|
||||
|
Reference in New Issue
Block a user