##// 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 2 from mercurial import (
3 3 dispatch,
4 4 error,
5 ui,
5 ui as uimod,
6 6 )
7 7
8 testui = ui.ui()
8 testui = uimod.ui()
9 9 parsed = dispatch._parseconfig(testui, [
10 10 'values.string=string value',
11 11 'values.bool1=true',
General Comments 0
You need to be logged in to leave comments. Login now