Mercurial > public > mercurial-scm > hg-stable
diff tests/test-walkrepo.py @ 28777:778d947f222e
tests: alias ui as uimod in test-walkrepo
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 03 Apr 2016 20:13:42 +0900 |
parents | a4803f35efba |
children | d83ca854fa21 |
line wrap: on
line diff
--- 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)