From 12a258c078da3481a5735a7dca00bbe75cd4713b Mon Sep 17 00:00:00 2001 From: Jeff King Date: Thu, 28 Jan 2010 04:56:43 -0500 Subject: reject @{-1} not at beginning of object name Something like foo@{-1} is nonsensical, as the @{-N} syntax is reserved for "the Nth last branch", and is not an actual reflog selector. We should not feed such nonsense to approxidate at all. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- t/t1508-at-combinations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't') diff --git a/t/t1508-at-combinations.sh b/t/t1508-at-combinations.sh index 2a46af24d6..d5d6244178 100755 --- a/t/t1508-at-combinations.sh +++ b/t/t1508-at-combinations.sh @@ -45,7 +45,7 @@ check "@{u}" upstream-two check "@{u}@{1}" upstream-one check "@{-1}@{u}" master-two check "@{-1}@{u}@{1}" master-one -fail nonsense "@{u}@{-1}" +nonsense "@{u}@{-1}" nonsense "@{1}@{u}" test_done -- cgit v1.2.1