# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1460757927 -19800 # Node ID 4eac86331acb47664a8ebb301b19cd2bf7dae243 # Parent ba0e4789bd2e6716594c3432489142a98fc87079 tests: make test-hgwebdir-paths use absolute_import diff -r ba0e4789bd2e -r 4eac86331acb tests/test-check-py3-compat.t --- a/tests/test-check-py3-compat.t Sat Apr 16 03:22:45 2016 +0530 +++ b/tests/test-check-py3-compat.t Sat Apr 16 03:35:27 2016 +0530 @@ -56,7 +56,6 @@ tests/test-demandimport.py not using absolute_import tests/test-demandimport.py requires print_function tests/test-doctest.py not using absolute_import - tests/test-hgwebdir-paths.py not using absolute_import tests/test-trusted.py requires print_function #if py3exe diff -r ba0e4789bd2e -r 4eac86331acb tests/test-hgwebdir-paths.py --- a/tests/test-hgwebdir-paths.py Sat Apr 16 03:22:45 2016 +0530 +++ b/tests/test-hgwebdir-paths.py Sat Apr 16 03:35:27 2016 +0530 @@ -1,13 +1,21 @@ +from __future__ import absolute_import + import os -from mercurial import hg, ui -from mercurial.hgweb.hgwebdir_mod import hgwebdir +from mercurial import ( + hg, + ui as uimod, +) +from mercurial.hgweb import ( + hgwebdir_mod, +) +hgwebdir = hgwebdir_mod.hgwebdir os.mkdir('webdir') os.chdir('webdir') webdir = os.path.realpath('.') -u = ui.ui() +u = uimod.ui() hg.repository(u, 'a', create=1) hg.repository(u, 'b', create=1) os.chdir('b')