summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rwxr-xr-xt/t2025-checkout-no-overlay.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/t/t2025-checkout-no-overlay.sh b/t/t2025-checkout-no-overlay.sh
index a4912e35cb..76330cb5ab 100755
--- a/t/t2025-checkout-no-overlay.sh
+++ b/t/t2025-checkout-no-overlay.sh
@@ -44,14 +44,4 @@ test_expect_success '--no-overlay --theirs with D/F conflict deletes file' '
test_path_is_missing file1
'
-test_expect_success 'checkout with checkout.overlayMode=false deletes files not in <tree-ish>' '
- >file &&
- mkdir dir &&
- >dir/file1 &&
- git add file dir/file1 &&
- git -c checkout.overlayMode=false checkout HEAD -- file &&
- test_path_is_missing file &&
- test_path_is_file dir/file1
-'
-
test_done