Skip to content

Commit d3a486c

Browse files
committed
t4211: fix incorrect rebase at f8395ed (range-set: satisfy non-empty ranges invariant)
Wnen I rewrote "cat b.c | wc -l" into "wc -l <b.c" to squash in a suggestion on the list to this series, I screwed up subsequent rebase. Fix it up. Signed-off-by: Junio C Hamano <[email protected]>
1 parent efc5e5e commit d3a486c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

t/t4211-line-log.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ test_bad_opts "-L :foo:b.c" "no match"
6868
# thus to demonstrate this particular bug, the empty -L range must follow a
6969
# non-empty -L range.
7070
test_expect_success '-L {empty-range} (any -L)' '
71-
n=$(expr $(cat b.c | wc -l) + 1) &&
7271
n=$(expr $(wc -l <b.c) + 1) &&
7372
git log -L1,1:b.c -L$n:b.c
7473
'

0 commit comments

Comments
 (0)