diff tests/test-revlog-ancestry.py @ 28842:d466facc5a6e

tests: alias ui as uimod in test-revlog-ancestry/test-ui-verbosity
author Yuya Nishihara <yuya@tcha.org>
date Tue, 05 Apr 2016 23:35:45 +0900
parents e677b8daeb3f
children d83ca854fa21
line wrap: on
line diff
--- a/tests/test-revlog-ancestry.py	Tue Apr 05 23:23:43 2016 +0900
+++ b/tests/test-revlog-ancestry.py	Tue Apr 05 23:35:45 2016 +0900
@@ -3,10 +3,10 @@
 from mercurial import (
     hg,
     merge,
-    ui,
+    ui as uimod,
 )
 
-u = ui.ui()
+u = uimod.ui()
 
 repo = hg.repository(u, 'test1', create=1)
 os.chdir('test1')