##// 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 57 tests/test-demandimport.py requires print_function
58 58 tests/test-doctest.py not using absolute_import
59 59 tests/test-hgwebdir-paths.py not using absolute_import
60 tests/test-lrucachedict.py not using absolute_import
61 60 tests/test-lrucachedict.py requires print_function
62 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 7 def printifpresent(d, xs, name='d'):
4 8 for x in xs:
General Comments 0
You need to be logged in to leave comments. Login now