Skip to content

Commit f5ebe8f

Browse files
avargitster
authored andcommitted
wildmatch test: don't try to vertically align our output
Don't try to vertically align the test output, which is futile anyway under the TAP output where we're going to be emitting a number for each test without aligning the test count. This makes subsequent changes of mine where I'm not going to be aligning this output as I add new tests easier. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5008ba8 commit f5ebe8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

t/t3070-wildmatch.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ test_description='wildmatch tests'
77
match() {
88
if test "$1" = 1
99
then
10-
test_expect_success "wildmatch: match '$3' '$4'" "
10+
test_expect_success "wildmatch: match '$3' '$4'" "
1111
test-wildmatch wildmatch '$3' '$4'
1212
"
1313
else
14-
test_expect_success "wildmatch: no match '$3' '$4'" "
14+
test_expect_success "wildmatch: no match '$3' '$4'" "
1515
! test-wildmatch wildmatch '$3' '$4'
1616
"
1717
fi
@@ -20,7 +20,7 @@ match() {
2020
imatch() {
2121
if test "$1" = 1
2222
then
23-
test_expect_success "iwildmatch: match '$2' '$3'" "
23+
test_expect_success "iwildmatch: match '$2' '$3'" "
2424
test-wildmatch iwildmatch '$2' '$3'
2525
"
2626
else
@@ -33,11 +33,11 @@ imatch() {
3333
pathmatch() {
3434
if test "$1" = 1
3535
then
36-
test_expect_success "pathmatch: match '$2' '$3'" "
36+
test_expect_success "pathmatch: match '$2' '$3'" "
3737
test-wildmatch pathmatch '$2' '$3'
3838
"
3939
else
40-
test_expect_success "pathmatch: no match '$2' '$3'" "
40+
test_expect_success "pathmatch: no match '$2' '$3'" "
4141
! test-wildmatch pathmatch '$2' '$3'
4242
"
4343
fi

0 commit comments

Comments
 (0)