Skip to content

Commit 0d3505e

Browse files
committed
Merge branch 'rs/parallel-checkout-test-fix'
Test fix. * rs/parallel-checkout-test-fix: parallel-checkout: avoid dash local bug in tests
2 parents 0481af9 + ebee558 commit 0d3505e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/lib-parallel-checkout.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ test_checkout_workers () {
2727
rm -f "$trace_file" &&
2828
GIT_TRACE2="$(pwd)/$trace_file" "$@" 2>&8 &&
2929

30-
local workers=$(grep "child_start\[..*\] git checkout--worker" "$trace_file" | wc -l) &&
30+
local workers="$(grep "child_start\[..*\] git checkout--worker" "$trace_file" | wc -l)" &&
3131
test $workers -eq $expected_workers &&
3232
rm "$trace_file"
3333
} 8>&2 2>&4

0 commit comments

Comments
 (0)