diff tests/test-clone-uncompressed.t @ 31262:e7a35f18d91f

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.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Thu, 02 Mar 2017 13:34:01 +0100
parents 9dc27a334fb1
children 33b7283a3828
line wrap: on
line diff
--- a/tests/test-clone-uncompressed.t	Thu Mar 02 13:33:28 2017 +0100
+++ b/tests/test-clone-uncompressed.t	Thu Mar 02 13:34:01 2017 +0100
@@ -60,12 +60,12 @@
 
   $ cat > delayer.py <<EOF
   > 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