Commit 13438d92 authored by Jim Fulton's avatar Jim Fulton

adjust for server_protocol's changed signature

parent 24b8ff8c
...@@ -44,7 +44,7 @@ class StorageServer(ZEO.StorageServer.StorageServer): ...@@ -44,7 +44,7 @@ class StorageServer(ZEO.StorageServer.StorageServer):
def client(server, name='client'): def client(server, name='client'):
zs = ZEO.StorageServer.ZEOStorage(server) zs = ZEO.StorageServer.ZEOStorage(server)
protocol = ZEO.asyncio.tests.server_protocol( protocol = ZEO.asyncio.tests.server_protocol(
zs, protocol_version=b'Z5', addr='test-addr-%s' % name) False, zs, protocol_version=b'Z5', addr='test-addr-%s' % name)
zs.notify_connected(protocol) zs.notify_connected(protocol)
zs.register('1', 0) zs.register('1', 0)
return zs return zs
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment