diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-07-13 14:54:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-07-13 14:54:52 -0700 |
commit | 92a25a8897b34db149df7e77ca625a9a151edb51 (patch) | |
tree | db646c4ea60f57f40d976c5bf168b0083b75970a /t/t3700-add.sh | |
parent | db791e6e8f8f10e4e785cd7b4ce292bd28e9dc61 (diff) | |
parent | eb1cd60290d3898ef3c3293a11400f9fff9376cd (diff) |
Merge branch 'ab/test-quoting-fix'
Fixes for tests when the source directory has unusual characters in
its path, e.g. whitespaces, double-quotes, etc.
* ab/test-quoting-fix:
config tests: fix harmless but broken "rm -r" cleanup
test-lib.sh: fix prepend_var() quoting issue
tests: add missing double quotes to included library paths
Diffstat (limited to 't/t3700-add.sh')
-rwxr-xr-x | t/t3700-add.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3700-add.sh b/t/t3700-add.sh index 8979c8a5f0..8689b48589 100755 --- a/t/t3700-add.sh +++ b/t/t3700-add.sh @@ -8,7 +8,7 @@ test_description='Test of git add, including the -- option.' TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh -. $TEST_DIRECTORY/lib-unique-files.sh +. "$TEST_DIRECTORY"/lib-unique-files.sh # Test the file mode "$1" of the file "$2" in the index. test_mode_in_index () { |