##// END OF EJS Templates
tests: make test-manifest use absolute_import
Pulkit Goyal -
r28929:b9ed5a88 default
parent child Browse files
Show More
@@ -59,7 +59,6 b''
59 59 tests/test-hgwebdir-paths.py not using absolute_import
60 60 tests/test-lrucachedict.py not using absolute_import
61 61 tests/test-lrucachedict.py requires print_function
62 tests/test-manifest.py not using absolute_import
63 62 tests/test-trusted.py requires print_function
64 63
65 64 #if py3exe
@@ -1,11 +1,14 b''
1 import binascii
2 import unittest
3 import itertools
1 from __future__ import absolute_import
4 2
3 import binascii
4 import itertools
5 5 import silenttestrunner
6 import unittest
6 7
7 from mercurial import manifest as manifestmod
8 from mercurial import match as matchmod
8 from mercurial import (
9 manifest as manifestmod,
10 match as matchmod,
11 )
9 12
10 13 EMTPY_MANIFEST = ''
11 14 EMTPY_MANIFEST_V2 = '\0\n'
General Comments 0
You need to be logged in to leave comments. Login now