Skip to content

Commit

Permalink
t4211: fix incorrect rebase at f8395ed (range-set: satisfy non-empty …
Browse files Browse the repository at this point in the history
…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 <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jul 24, 2013
1 parent efc5e5e commit d3a486c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion t/t4211-line-log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ test_bad_opts "-L :foo:b.c" "no match"
# thus to demonstrate this particular bug, the empty -L range must follow a
# non-empty -L range.
test_expect_success '-L {empty-range} (any -L)' '
n=$(expr $(cat b.c | wc -l) + 1) &&
n=$(expr $(wc -l <b.c) + 1) &&
git log -L1,1:b.c -L$n:b.c
'
Expand Down

0 comments on commit d3a486c

Please sign in to comment.