--- a/tests/test-check-py3-compat.t Sun Dec 06 22:27:53 2015 -0800
+++ b/tests/test-check-py3-compat.t Sun Dec 06 22:05:19 2015 -0800
@@ -218,7 +218,6 @@
tests/test-ui-verbosity.py requires print_function
tests/test-url.py not using absolute_import
tests/test-url.py requires print_function
- tests/test-walkrepo.py not using absolute_import
tests/test-walkrepo.py requires print_function
tests/test-wireproto.py not using absolute_import
tests/test-wireproto.py requires print_function
--- a/tests/test-walkrepo.py Sun Dec 06 22:27:53 2015 -0800
+++ b/tests/test-walkrepo.py Sun Dec 06 22:05:19 2015 -0800
@@ -1,9 +1,20 @@
+from __future__ import absolute_import
+
import os
-from mercurial import hg, ui
-from mercurial.scmutil import walkrepos
-from mercurial.util import checklink
-from os import mkdir, chdir
-from os.path import join as pjoin
+
+from mercurial import (
+ hg,
+ scmutil,
+ ui,
+ util,
+)
+
+chdir = os.chdir
+mkdir = os.mkdir
+pjoin = os.path.join
+
+walkrepos = scmutil.walkrepos
+checklink = util.checklink
u = ui.ui()
sym = checklink('.')