aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-07-21 14:27:12 -0700
committerGravatar GitHub <noreply@github.com>2016-07-21 14:27:12 -0700
commit593fdab4804fafe769bb3874783169ef5580f8d0 (patch)
treef74e1ae0782957a49ba0bbc5070c298eada46d05 /src
parent27d00b07b0fd0759beeb94fea4b0d80b4c06d3c4 (diff)
parent8d3e9ec9c2bfd2586554762374367f2e72325b88 (diff)
Merge pull request #7495 from kpayson64/fix_cygrpc_test
Fix cygrpc test
Diffstat (limited to 'src')
-rw-r--r--src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py2
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()