##// END OF EJS Templates
tests: alias ui as uimod in test-context
Yuya Nishihara -
r28775:67bff672 default
parent child Browse files
Show More
@@ -4,10 +4,10 b' from mercurial import ('
4 context,
4 context,
5 encoding,
5 encoding,
6 hg,
6 hg,
7 ui,
7 ui as uimod,
8 )
8 )
9
9
10 u = ui.ui()
10 u = uimod.ui()
11
11
12 repo = hg.repository(u, 'test1', create=1)
12 repo = hg.repository(u, 'test1', create=1)
13 os.chdir('test1')
13 os.chdir('test1')
General Comments 0
You need to be logged in to leave comments. Login now