tests/test-sshserver.py
changeset 37785 b4d85bc122bd
parent 37120 a8a902d7176e
child 41285 cf8677cd7286
--- a/tests/test-sshserver.py	Mon Apr 16 22:10:02 2018 -0700
+++ b/tests/test-sshserver.py	Mon Apr 16 22:21:54 2018 -0700
@@ -6,8 +6,8 @@
 import silenttestrunner
 
 from mercurial import (
-    wireproto,
     wireprotoserver,
+    wireprotov1server,
 )
 
 from mercurial.utils import (
@@ -29,7 +29,7 @@
         proto = wireprotoserver.sshv1protocolhandler(server._ui,
                                                      server._fin,
                                                      server._fout)
-        _func, spec = wireproto.commands[cmd]
+        _func, spec = wireprotov1server.commands[cmd]
         self.assertEqual(proto.getargs(spec), expected)
 
 def mockserver(inbytes):