Skip to content

Commit 399a9f3

Browse files
committed
Merge branch 'zk/push-use-bitmaps'
Test fix. * zk/push-use-bitmaps: t5516: fail to run in verbose mode
2 parents 7d7ed48 + 288fcb1 commit 399a9f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/t5516-fetch-push.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1858,19 +1858,19 @@ test_expect_success 'push with config push.useBitmaps' '
18581858
git checkout main &&
18591859
test_unconfig push.useBitmaps &&
18601860
GIT_TRACE2_EVENT="$PWD/default" \
1861-
git push testrepo main:test &&
1861+
git push --quiet testrepo main:test &&
18621862
test_subcommand git pack-objects --all-progress-implied --revs --stdout \
18631863
--thin --delta-base-offset -q <default &&
18641864
18651865
test_config push.useBitmaps true &&
18661866
GIT_TRACE2_EVENT="$PWD/true" \
1867-
git push testrepo main:test2 &&
1867+
git push --quiet testrepo main:test2 &&
18681868
test_subcommand git pack-objects --all-progress-implied --revs --stdout \
18691869
--thin --delta-base-offset -q <true &&
18701870
18711871
test_config push.useBitmaps false &&
18721872
GIT_TRACE2_EVENT="$PWD/false" \
1873-
git push testrepo main:test3 &&
1873+
git push --quiet testrepo main:test3 &&
18741874
test_subcommand git pack-objects --all-progress-implied --revs --stdout \
18751875
--thin --delta-base-offset -q --no-use-bitmap-index <false
18761876
'

0 commit comments

Comments
 (0)