Skip to content

Commit 9e220fe

Browse files
larsxschneidergitster
authored andcommitted
t9824: fix wrong reference value
0492eb4 (t9824: fix broken &&-chain in a subshell, 2016-04-24) revealed a test that was broken from the beginning, as it expected a wrong size. The expected size of the file under test is 39 bytes. The test checked that the size is 13 bytes, but this was not noticed because it was breaking the &&-chain. Fix the reference value to make the test pass. Signed-off-by: Lars Schneider <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0492eb4 commit 9e220fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t9824-git-p4-git-lfs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ test_expect_success 'Add big files to repo and store files in LFS based on compr
265265
# We only import HEAD here ("@all" is missing!)
266266
git p4 clone --destination="$git" //depot &&
267267
268-
test_file_in_lfs file6.bin 13 "content 6 bin 39 bytes XXXXXYYYYYZZZZZ" &&
268+
test_file_in_lfs file6.bin 39 "content 6 bin 39 bytes XXXXXYYYYYZZZZZ" &&
269269
test_file_count_in_dir ".git/lfs/objects" 1 &&
270270
271271
cat >expect <<-\EOF &&

0 commit comments

Comments
 (0)