test-revset-outgoing: stop using '#branchname' in path

Summary: This makes it compatible with future releases.

Reviewed By: singhsrb

Differential Revision: D13978572

fbshipit-source-id: 9394a811b848f1160aaa54be0d09dfc2ea142e81
This commit is contained in:
Jun Wu 2019-02-12 19:48:29 -08:00 committed by Facebook Github Bot
parent 4e5a678efb
commit c74e2991dc

View File

@ -77,17 +77,17 @@
3:5de9cb7d8f67: '3'
4:acadbdc73b28: '4'
$ hg tout ../a#default
$ hg tout ../a
comparing with ../a
searching for changes
3:5de9cb7d8f67: '3'
4:acadbdc73b28: '4'
$ hg tlog -r 'outgoing("../a#default")'
$ hg tlog -r 'outgoing("../a")'
3:5de9cb7d8f67: '3'
4:acadbdc73b28: '4'
$ echo "green = ../a#default" >> .hg/hgrc
$ echo "green = ../a" >> .hg/hgrc
$ cat .hg/hgrc
# example repository config (see 'hg help config' for more info)
@ -104,7 +104,7 @@
[ui]
# name and email (local to this repository, optional), e.g.
# username = Jane Doe <jdoe@example.com>
green = ../a#default
green = ../a
$ hg tout green
abort: repository green does not exist!