aboutsummaryrefslogtreecommitdiff
path: root/t/t3050-subprojects-fetch.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t3050-subprojects-fetch.sh')
-rwxr-xr-xt/t3050-subprojects-fetch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t3050-subprojects-fetch.sh b/t/t3050-subprojects-fetch.sh
index 34f26a8d9..2b21b1070 100755
--- a/t/t3050-subprojects-fetch.sh
+++ b/t/t3050-subprojects-fetch.sh
@@ -26,7 +26,7 @@ test_expect_success clone '
cd cloned &&
(git rev-parse HEAD; git ls-files -s) >../actual
) &&
- diff -u expected actual
+ test_cmp expected actual
'
test_expect_success advance '
@@ -46,7 +46,7 @@ test_expect_success fetch '
git pull &&
(git rev-parse HEAD; git ls-files -s) >../actual
) &&
- diff -u expected actual
+ test_cmp expected actual
'
test_done