comparison tests/test-revset-outgoing.t @ 45906:95c4cca641f6

errors: remove trailing "!" from some error messages for consistency Some types of exceptions had a trailing "!" printed after the message from the exception itself. I guess some of these errors seem a little more severe (?), but it seems more likely that the inconsistency was just an oversight. Differential Revision: https://phab.mercurial-scm.org/D9378
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 23 Nov 2020 11:18:48 -0800
parents 0ebd94ac56d1
children
comparison
equal deleted inserted replaced
45905:e131dbf6ee15 45906:95c4cca641f6
103 # name and email (local to this repository, optional), e.g. 103 # name and email (local to this repository, optional), e.g.
104 # username = Jane Doe <jdoe@example.com> 104 # username = Jane Doe <jdoe@example.com>
105 green = ../a#default 105 green = ../a#default
106 106
107 $ hg tout green 107 $ hg tout green
108 abort: repository green does not exist! 108 abort: repository green does not exist
109 [255] 109 [255]
110 110
111 $ hg tlog -r 'outgoing("green")' 111 $ hg tlog -r 'outgoing("green")'
112 abort: repository green does not exist! 112 abort: repository green does not exist
113 [255] 113 [255]
114 114
115 $ cd .. 115 $ cd ..