diff tests/test-ui-config.py @ 28776:5508a277bab2

tests: alias ui as uimod in test-ui-config
author Yuya Nishihara <yuya@tcha.org>
date Sun, 03 Apr 2016 19:56:59 +0900
parents eda8b28e3b1b
children d83ca854fa21
line wrap: on
line diff
--- 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',