summaryrefslogtreecommitdiff
path: root/t/t4063-diff-blobs.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t4063-diff-blobs.sh')
-rwxr-xr-xt/t4063-diff-blobs.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/t4063-diff-blobs.sh b/t/t4063-diff-blobs.sh
index 80ce033ab6..bc69e26c52 100755
--- a/t/t4063-diff-blobs.sh
+++ b/t/t4063-diff-blobs.sh
@@ -81,11 +81,16 @@ test_expect_success 'diff blob against file' '
test_expect_success 'index of blob-file diff' '
check_index $sha1_one $sha1_two
'
-test_expect_failure 'blob-file diff uses filename as paths' '
+test_expect_success 'blob-file diff uses filename as paths' '
check_paths one two
'
test_expect_success FILEMODE 'blob-file diff shows mode change' '
check_mode 100644 100755
'
+test_expect_success 'blob-file diff prefers filename to sha1' '
+ run_diff $sha1_one two &&
+ check_paths two two
+'
+
test_done