Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jk/list-tag-2.7-regression' into maint
[gitweb.git]
/
t
/
t3203-branch-output.sh
diff --git
a/t/t3203-branch-output.sh
b/t/t3203-branch-output.sh
index d3913f9088950a3ca848b8994abfddfecd3f6706..4261403cf62542e82d40487e47733f586e106a75 100755
(executable)
--- a/
t/t3203-branch-output.sh
+++ b/
t/t3203-branch-output.sh
@@
-176,4
+176,12
@@
test_expect_success 'git branch --points-at option' '
test_cmp expect actual
'
+test_expect_success 'ambiguous branch/tag not marked' '
+ git tag ambiguous &&
+ git branch ambiguous &&
+ echo " ambiguous" >expect &&
+ git branch --list ambiguous >actual &&
+ test_cmp expect actual
+'
+
test_done