##// END OF EJS Templates
tests: alias ui as uimod in test-ui-config
Yuya Nishihara -
r28776:5508a277 default
parent child Browse files
Show More
@@ -2,10 +2,10 b' from __future__ import absolute_import, '
2 from mercurial import (
2 from mercurial import (
3 dispatch,
3 dispatch,
4 error,
4 error,
5 ui,
5 ui as uimod,
6 )
6 )
7
7
8 testui = ui.ui()
8 testui = uimod.ui()
9 parsed = dispatch._parseconfig(testui, [
9 parsed = dispatch._parseconfig(testui, [
10 'values.string=string value',
10 'values.string=string value',
11 'values.bool1=true',
11 'values.bool1=true',
General Comments 0
You need to be logged in to leave comments. Login now