Skip to content

Commit cc4a782

Browse files
committed
Check the new bail-out logic itself
1 parent eca9f99 commit cc4a782

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/helpers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ function small-repo-in-sandbox() {
6161

6262
function launch-git-daemon() {
6363
local port=9418
64-
if nc -z localhost "$port"; then
65-
echo "Port $port should not have been open before this test's run of the git daemon!" >&2
64+
if true; then
65+
echo "We didn't check $port -- this just tests if we can bail out." >&2
6666
return 1
6767
fi
6868
git -c uploadpack.allowrefinwant daemon --verbose --base-path=. --export-all --user-path &>/dev/null &

0 commit comments

Comments
 (0)