From da1f8d7c66b83184f043b370dcb41407cf3d8454 Mon Sep 17 00:00:00 2001 From: Eric Gribkoff Date: Tue, 19 Feb 2019 15:46:49 -0800 Subject: [PATCH] rpc test fix --- src/python/grpcio_tests/tests/unit/_rpc_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/grpcio_tests/tests/unit/_rpc_test.py b/src/python/grpcio_tests/tests/unit/_rpc_test.py index 20ef66671a0..4862d0fb185 100644 --- a/src/python/grpcio_tests/tests/unit/_rpc_test.py +++ b/src/python/grpcio_tests/tests/unit/_rpc_test.py @@ -23,7 +23,7 @@ import grpc from grpc.framework.foundation import logging_pool from tests.unit import test_common -from tests.unit import _thread_pool +from tests.unit import thread_pool from tests.unit.framework.common import test_constants from tests.unit.framework.common import test_control @@ -238,7 +238,7 @@ class RPCTest(unittest.TestCase): def setUp(self): self._control = test_control.PauseFailControl() - self._thread_pool = _thread_pool.RecordingThreadPool(max_workers=None) + self._thread_pool = thread_pool.RecordingThreadPool(max_workers=None) self._handler = _Handler(self._control, self._thread_pool) self._server = test_common.test_server()