Mercurial > hg
changeset 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 | 67bff672ccc2 |
children | 778d947f222e |
files | tests/test-ui-config.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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',