diff options
author | Ken Payson <kpayson@google.com> | 2016-05-06 09:40:52 -0700 |
---|---|---|
committer | Ken Payson <kpayson@google.com> | 2016-05-06 09:40:52 -0700 |
commit | af1fe578e099f5e470a9e1a853181983753ceefa (patch) | |
tree | ae188967c4b6b75754b59b8e1fc03952029e9855 /src/python/grpcio/tests | |
parent | 85a5ffa1a9000778f0c7eb0942c38c78938f55f3 (diff) |
Namespace change
Diffstat (limited to 'src/python/grpcio/tests')
-rw-r--r-- | src/python/grpcio/tests/health_check/_health_servicer_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/grpcio/tests/health_check/_health_servicer_test.py b/src/python/grpcio/tests/health_check/_health_servicer_test.py index 625cb7fc59..1b63388663 100644 --- a/src/python/grpcio/tests/health_check/_health_servicer_test.py +++ b/src/python/grpcio/tests/health_check/_health_servicer_test.py @@ -27,12 +27,12 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -"""Tests of grpc_health_checking.health.v1.health.""" +"""Tests of grpc_health.health.v1.health.""" import unittest -from grpc_health_checking.health.v1 import health -from grpc_health_checking.health.v1 import health_pb2 +from grpc_health.health.v1 import health +from grpc_health.health.v1 import health_pb2 class HealthServicerTest(unittest.TestCase): |