M tests/test_bookmark.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {bookmark}.'''
from nose import *
-from util import *
+from .util import *
@with_setup(setup_sandbox, teardown_sandbox)
def test_bookmark():
M tests/test_branch.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {branch}.'''
from nose import *
-from util import *
+from .util import *
@with_setup(setup_sandbox, teardown_sandbox)
M tests/test_hgrc.py +1 -1
@@ 1,7 1,7 @@
'''Test evaluation of prompt template in HGRC.'''
from nose import *
-from util import *
+from .util import *
@with_setup(setup_sandbox, teardown_sandbox)
M tests/test_node.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {node}.'''
from nose import *
-from util import *
+from .util import *
def _parent_node():
M tests/test_none.py +1 -1
@@ 1,7 1,7 @@
'''Test output without keywords.'''
from nose import *
-from util import *
+from .util import *
@with_setup(setup_sandbox, teardown_sandbox)
M tests/test_rev.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {node}.'''
from nose import *
-from util import *
+from .util import *
def _parent_rev():
M tests/test_tip.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {tip}.'''
from nose import *
-from util import *
+from .util import *
def _tip_rev():
M tests/test_update.py +1 -1
@@ 1,7 1,7 @@
'''Test output of {update}.'''
from nose import *
-from util import *
+from .util import *
@with_setup(setup_sandbox, teardown_sandbox)