Skip to content

Commit 36b6571

Browse files
committed
Merge branch 'js/t1450-making-it-writable-does-not-need-full-posixperm'
Test fix. * js/t1450-making-it-writable-does-not-need-full-posixperm: t1450-fsck: exec-bit is not needed to make loose object writable
2 parents 9a329bd + 5906910 commit 36b6571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t1450-fsck.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ test_expect_success 'object with hash and type mismatch' '
9494
)
9595
'
9696

97-
test_expect_success POSIXPERM 'zlib corrupt loose object output ' '
97+
test_expect_success 'zlib corrupt loose object output ' '
9898
git init --bare corrupt-loose-output &&
9999
(
100100
cd corrupt-loose-output &&
101101
oid=$(git hash-object -w --stdin --literally </dev/null) &&
102102
oidf=objects/$(test_oid_to_path "$oid") &&
103-
chmod 755 $oidf &&
103+
chmod +w $oidf &&
104104
echo extra garbage >>$oidf &&
105105
106106
cat >expect.error <<-EOF &&

0 commit comments

Comments
 (0)