##// END OF EJS Templates
tests: make test-lrucachedict use absolute_import
Pulkit Goyal -
r28930:e3f01188 default
parent child Browse files
Show More
@@ -57,7 +57,6 b''
57 tests/test-demandimport.py requires print_function
57 tests/test-demandimport.py requires print_function
58 tests/test-doctest.py not using absolute_import
58 tests/test-doctest.py not using absolute_import
59 tests/test-hgwebdir-paths.py not using absolute_import
59 tests/test-hgwebdir-paths.py not using absolute_import
60 tests/test-lrucachedict.py not using absolute_import
61 tests/test-lrucachedict.py requires print_function
60 tests/test-lrucachedict.py requires print_function
62 tests/test-trusted.py requires print_function
61 tests/test-trusted.py requires print_function
63
62
@@ -1,4 +1,8 b''
1 from mercurial import util
1 from __future__ import absolute_import
2
3 from mercurial import (
4 util,
5 )
2
6
3 def printifpresent(d, xs, name='d'):
7 def printifpresent(d, xs, name='d'):
4 for x in xs:
8 for x in xs:
General Comments 0
You need to be logged in to leave comments. Login now