tests: alias ui as uimod in test-ui-config
authorYuya Nishihara <yuya@tcha.org>
Sun, 03 Apr 2016 19:56:59 +0900
changeset 28776 5508a277bab2
parent 28775 67bff672ccc2
child 28777 778d947f222e
tests: alias ui as uimod in test-ui-config
tests/test-ui-config.py
--- a/tests/test-ui-config.py	Sun Apr 03 19:52:13 2016 +0900
+++ b/tests/test-ui-config.py	Sun Apr 03 19:56:59 2016 +0900
@@ -2,10 +2,10 @@
 from mercurial import (
     dispatch,
     error,
-    ui,
+    ui as uimod,
 )
 
-testui = ui.ui()
+testui = uimod.ui()
 parsed = dispatch._parseconfig(testui, [
     'values.string=string value',
     'values.bool1=true',