summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-04-06 00:23:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2024-04-06 05:50:11 (GMT)
commit26ba7477d9815f82ad37c5a5499af2e236cbef25 (patch)
tree854c90f669a7745e6003e20ad841c0ba28e77d79
parent8bfe4861913843b6aac8656aabfd43ac405362e8 (diff)
downloadgit-26ba7477d9815f82ad37c5a5499af2e236cbef25.zip
git-26ba7477d9815f82ad37c5a5499af2e236cbef25.tar.gz
git-26ba7477d9815f82ad37c5a5499af2e236cbef25.tar.bz2
t0610: local VAR="VAL" fix
The series was based on maint and fixes all the tests that exist there, but we have acquired a few more. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t0610-reftable-basics.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0610-reftable-basics.sh b/t/t0610-reftable-basics.sh
index 6867811..c8074eb 100755
--- a/t/t0610-reftable-basics.sh
+++ b/t/t0610-reftable-basics.sh
@@ -83,7 +83,7 @@ test_expect_success 'init: reinitializing reftable with files backend fails' '
test_expect_perms () {
local perms="$1"
local file="$2"
- local actual=$(ls -l "$file") &&
+ local actual="$(ls -l "$file")" &&
case "$actual" in
$perms*)