##// END OF EJS Templates
py3: use absolute_import in test-context.py
Robert Stanca -
r28735:5edde05f default
parent child Browse files
Show More
@@ -53,7 +53,6 b''
53 tests/svn-safe-append.py not using absolute_import
53 tests/svn-safe-append.py not using absolute_import
54 tests/svnxml.py not using absolute_import
54 tests/svnxml.py not using absolute_import
55 tests/test-atomictempfile.py not using absolute_import
55 tests/test-atomictempfile.py not using absolute_import
56 tests/test-context.py not using absolute_import
57 tests/test-context.py requires print_function
56 tests/test-context.py requires print_function
58 tests/test-demandimport.py not using absolute_import
57 tests/test-demandimport.py not using absolute_import
59 tests/test-demandimport.py requires print_function
58 tests/test-demandimport.py requires print_function
@@ -1,5 +1,11 b''
1 from __future__ import absolute_import
1 import os
2 import os
2 from mercurial import hg, ui, context, encoding
3 from mercurial import (
4 hg,
5 ui,
6 context,
7 encoding,
8 )
3
9
4 u = ui.ui()
10 u = ui.ui()
5
11
General Comments 0
You need to be logged in to leave comments. Login now