[GSOC][PATCH v2] t1300: convert "test -f" with "test_path_is_file"
From: Adrian Wijaya <hidden>
Date: 2020-03-20 15:58:37
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Adrian Wijaya <hidden>
Date: 2020-03-20 15:58:37
Subsystem:
the rest · Maintainer:
Linus Torvalds
Convert "test -f" with "test_path_is_file" to give more verbose test output on failure. Signed-off-by: Adrian Wijaya <redacted> --- t/t1300-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/t1300-config.sh b/t/t1300-config.sh
index 97ebfe1f9d..d74554fc09 100755
--- a/t/t1300-config.sh
+++ b/t/t1300-config.sh@@ -1020,11 +1020,11 @@ test_expect_success SYMLINKS 'symlinked configuration' ' ln -s notyet myconfig && git config --file=myconfig test.frotz nitfol && test -h myconfig && - test -f notyet && + test_path_is_file notyet && test "z$(git config --file=notyet test.frotz)" = znitfol && git config --file=myconfig test.xyzzy rezrov && test -h myconfig && - test -f notyet && + test_path_is_file notyet && cat >expect <<-\EOF && nitfol rezrov
--
2.26.0.rc1.11.g30e9940356