diff --git a/t/t5607-clone-bundle.sh b/t/t5607-clone-bundle.sh index 348d9b3bc7..f84b875950 100755 --- a/t/t5607-clone-bundle.sh +++ b/t/t5607-clone-bundle.sh @@ -71,4 +71,8 @@ test_expect_success 'prerequisites with an empty commit message' ' git bundle verify bundle ' +test_expect_success 'try to create a bundle with empty ref count' ' + test_expect_code 1 git bundle create foobar.bundle master..master +' + test_done diff --git a/t/tgfw790-git-bundle.sh b/t/tgfw790-git-bundle.sh deleted file mode 100644 index 6bfa23c141..0000000000 --- a/t/tgfw790-git-bundle.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -test_description=' - test git-bundle under git for Windows - - When we select an empty set of commit (like git bundle create foobar.bundle master..master), - we should not have problem with the foobar.bundle.lock being locked (especially on Windows). -' - -. ./test-lib.sh - -test_expect_failure 'try to create a bundle with empty ref count' ' - git bundle create foobar.bundle master..master -' - -test_done