# HG changeset patch # User Yuya Nishihara # Date 1459682022 -32400 # Node ID 778d947f222e28d6f5e1c0fcebf9c189adb531d5 # Parent 5508a277bab24ae69f9dd687deca286c8872784f tests: alias ui as uimod in test-walkrepo diff -r 5508a277bab2 -r 778d947f222e tests/test-walkrepo.py --- a/tests/test-walkrepo.py Sun Apr 03 19:56:59 2016 +0900 +++ b/tests/test-walkrepo.py Sun Apr 03 20:13:42 2016 +0900 @@ -5,7 +5,7 @@ from mercurial import ( hg, scmutil, - ui, + ui as uimod, util, ) @@ -16,7 +16,7 @@ walkrepos = scmutil.walkrepos checklink = util.checklink -u = ui.ui() +u = uimod.ui() sym = checklink('.') hg.repository(u, 'top1', create=1)