Merge pull request #18873 from lidizheng/fix-typo

Fix a small typo in Python health servicer test
reviewable/pr18746/r7^2
Lidi Zheng 6 years ago committed by GitHub
commit 2268e49399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio_tests/tests/health_check/_health_servicer_test.py

@ -246,7 +246,7 @@ class HealthServicerTest(BaseWatchTests.WatchTests):
resp = self._stub.Check(request)
self.assertEqual(health_pb2.HealthCheckResponse.SERVING, resp.status)
def test_check_unknown_serivce(self):
def test_check_unknown_service(self):
request = health_pb2.HealthCheckRequest(service=_UNKNOWN_SERVICE)
resp = self._stub.Check(request)
self.assertEqual(health_pb2.HealthCheckResponse.UNKNOWN, resp.status)

Loading…
Cancel
Save