##// END OF EJS Templates
py3: use absolute_import in test-bdiff.py
Robert Stanca -
r28733:2e54aaa6 default
parent child Browse files
Show More
@@ -1,5 +1,9 b''
1 from __future__ import absolute_import
1 import struct
2 import struct
2 from mercurial import bdiff, mpatch
3 from mercurial import (
4 bdiff,
5 mpatch,
6 )
3
7
4 def test1(a, b):
8 def test1(a, b):
5 d = bdiff.bdiff(a, b)
9 d = bdiff.bdiff(a, b)
@@ -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-bdiff.py not using absolute_import
57 tests/test-bdiff.py requires print_function
56 tests/test-bdiff.py requires print_function
58 tests/test-context.py not using absolute_import
57 tests/test-context.py not using absolute_import
59 tests/test-context.py requires print_function
58 tests/test-context.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now