##// END OF EJS Templates
tests: alias ui as uimod in test-walkrepo
Yuya Nishihara -
r28777:778d947f default
parent child Browse files
Show More
@@ -5,7 +5,7 b' import os'
5 from mercurial import (
5 from mercurial import (
6 hg,
6 hg,
7 scmutil,
7 scmutil,
8 ui,
8 ui as uimod,
9 util,
9 util,
10 )
10 )
11
11
@@ -16,7 +16,7 b' pjoin = os.path.join'
16 walkrepos = scmutil.walkrepos
16 walkrepos = scmutil.walkrepos
17 checklink = util.checklink
17 checklink = util.checklink
18
18
19 u = ui.ui()
19 u = uimod.ui()
20 sym = checklink('.')
20 sym = checklink('.')
21
21
22 hg.repository(u, 'top1', create=1)
22 hg.repository(u, 'top1', create=1)
General Comments 0
You need to be logged in to leave comments. Login now