Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2022-11-09 01:15:05 +0300
committerTaylor Blau <me@ttaylorr.com>2022-11-09 01:15:06 +0300
commitec9a46af4f1320b933a3d43bd8e8f055d350819a (patch)
treead8bf2a2824c7dbdef4e2cb505ea18155c50a874
parentd957761effdb15aa02a78e3d228167f64b057f08 (diff)
parentcc8f95c04205b254154d89c17054aa963f31ad0b (diff)
Merge branch 'ma/drop-redundant-diagnostic'
A redundant diagnostic message is dropped from test_path_is_missing(). * ma/drop-redundant-diagnostic: test-lib-functions: drop redundant diagnostic print
-rw-r--r--t/test-lib-functions.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index 29d914a12ba..796093a7b32 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -921,10 +921,6 @@ test_path_is_missing () {
then
echo "Path exists:"
ls -ld "$1"
- if test $# -ge 1
- then
- echo "$*"
- fi
false
fi
}