tests/test-wireproto.py
changeset 37633 33a6eee08db2
parent 37614 a81d02ea65db
child 37785 b4d85bc122bd
--- a/tests/test-wireproto.py	Fri Apr 13 11:08:46 2018 -0700
+++ b/tests/test-wireproto.py	Wed Apr 11 16:18:26 2018 -0700
@@ -93,7 +93,9 @@
 clt = clientpeer(srv, uimod.ui())
 
 print(clt.greet(b"Foobar"))
-b = clt.iterbatch()
-list(map(b.greet, (b'Fo, =;:<o', b'Bar')))
-b.submit()
-print([r for r in b.results()])
+
+with clt.commandexecutor() as e:
+    fgreet1 = e.callcommand(b'greet', {b'name': b'Fo, =;:<o'})
+    fgreet2 = e.callcommand(b'greet', {b'name': b'Bar'})
+
+print([f.result() for f in (fgreet1, fgreet2)])