# HG changeset patch # User Pierre-Yves David # Date 2017-03-02 12:34:01 # Node ID e7a35f18d91f0fda820084b3d655ecff966736ca # Parent 34d57ddaf9f2fb50f449d5e5e4c4c523c9787e18 vfs: use 'vfs' module directly in 'test-clone-uncompressed' Now that the 'vfs' classes moved in their own module, lets use the new module directly. We update code iteratively to help with possible bisect needs in the future. diff --git a/tests/test-clone-uncompressed.t b/tests/test-clone-uncompressed.t --- a/tests/test-clone-uncompressed.t +++ b/tests/test-clone-uncompressed.t @@ -60,12 +60,12 @@ while cloning $ cat > delayer.py < import time - > from mercurial import extensions, scmutil + > from mercurial import extensions, vfs > def __call__(orig, self, path, *args, **kwargs): > if path == 'data/f1.i': > time.sleep(2) > return orig(self, path, *args, **kwargs) - > extensions.wrapfunction(scmutil.vfs, '__call__', __call__) + > extensions.wrapfunction(vfs.vfs, '__call__', __call__) > EOF prepare repo with small and big file to cover both code paths in emitrevlogdata