diff -r ce96be208ea4 -r c21aca51b392 tests/test-dirs.py --- a/tests/test-dirs.py Wed Oct 23 12:15:42 2019 -0700 +++ b/tests/test-dirs.py Wed Nov 06 14:13:19 2019 +0100 @@ -4,7 +4,7 @@ import silenttestrunner -from mercurial import util +from mercurial import pathutil class dirstests(unittest.TestCase): @@ -13,13 +13,13 @@ (b'a/a/a', [b'a', b'a/a', b'']), (b'alpha/beta/gamma', [b'', b'alpha', b'alpha/beta']), ]: - d = util.dirs({}) + d = pathutil.dirs({}) d.addpath(case) self.assertEqual(sorted(d), sorted(want)) def testinvalid(self): with self.assertRaises(ValueError): - d = util.dirs({}) + d = pathutil.dirs({}) d.addpath(b'a//b')