diff options
author | Ken Payson <kpayson@google.com> | 2016-07-12 16:15:45 -0700 |
---|---|---|
committer | Ken Payson <kpayson@google.com> | 2016-07-12 16:37:34 -0700 |
commit | cc06b91b7f16dd8b7f86001e4401340c6e4e75a4 (patch) | |
tree | 54b38f9783688fa3605628aafc7dc4e9819da9df /src/python/grpcio_tests/tests/unit | |
parent | 6b8a8e4a74fc83153a6fd3fbb7ec1ed2b288b4b4 (diff) |
Change sequence of client/server events
This is for https://github.com/grpc/grpc/pull/6737 when
start_batch will no longer put data on the wire
Diffstat (limited to 'src/python/grpcio_tests/tests/unit')
-rw-r--r-- | src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py b/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py index 9d1dbc189b..f9a8e2401b 100644 --- a/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py +++ b/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py @@ -281,8 +281,8 @@ class ServerClientMixin(object): ], server_call_tag) self.assertEqual(cygrpc.CallError.ok, server_start_batch_result) - client_event = client_event_future.result() server_event = self.server_completion_queue.poll(cygrpc_deadline) + client_event = client_event_future.result() self.assertEqual(6, len(client_event.batch_operations)) found_client_op_types = set() |