test-bdiff: move import inside the function to avoid test failure

test-check-module-imports.t fails on some systems where the path of home
directories is different than sys.prefix and sys.exec_prefix.
Importing silenttestrunner will help avoiding that failure.
This commit is contained in:
Pulkit Goyal 2017-02-14 01:52:16 +05:30
parent 4b315061e0
commit 6f863f0fc6

View File

@ -3,8 +3,6 @@ import collections
import struct
import unittest
import silenttestrunner
from mercurial import (
bdiff,
mpatch,
@ -148,4 +146,5 @@ class BdiffTests(unittest.TestCase):
['a\n', diffreplace(2, 10, 'a\na\na\na\n', '')])
if __name__ == '__main__':
import silenttestrunner
silenttestrunner.main(__name__)