##// END OF EJS Templates
py3: use absolute_import in test-duplicateoptions.py
Robert Stanca -
r28739:d289b884 default
parent child Browse files
Show More
@@ -56,7 +56,6 b''
56 tests/test-demandimport.py not using absolute_import
56 tests/test-demandimport.py not using absolute_import
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-duplicateoptions.py not using absolute_import
60 tests/test-duplicateoptions.py requires print_function
59 tests/test-duplicateoptions.py requires print_function
61 tests/test-filecache.py not using absolute_import
60 tests/test-filecache.py not using absolute_import
62 tests/test-filecache.py requires print_function
61 tests/test-filecache.py requires print_function
@@ -1,5 +1,10 b''
1 from __future__ import absolute_import
1 import os
2 import os
2 from mercurial import ui, commands, extensions
3 from mercurial import (
4 commands,
5 extensions,
6 ui,
7 )
3
8
4 ignore = set(['highlight', 'win32text', 'factotum'])
9 ignore = set(['highlight', 'win32text', 'factotum'])
5
10
General Comments 0
You need to be logged in to leave comments. Login now