Merge pull request #21921 from lidizheng/aio-fix-close-2

[Aio] Another fix for close mechanism on Windows
pull/21971/head
Lidi Zheng 5 years ago committed by GitHub
commit dc0509186c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio_tests/tests_aio/unit/metadata_test.py

@ -210,6 +210,8 @@ class TestMetadata(AioTestBase):
self.assertEqual(_RESPONSE, await call)
self.assertEqual(grpc.StatusCode.OK, await call.code())
@unittest.skipIf(platform.system() == 'Windows',
'https://github.com/grpc/grpc/issues/21943')
async def test_invalid_metadata(self):
multicallable = self._client.unary_unary(_TEST_CLIENT_TO_SERVER)
for exception_type, metadata in _INVALID_METADATA_TEST_CASES:

Loading…
Cancel
Save