Skip to content

Commit dc05091

Browse files
authored
Merge pull request grpc#21921 from lidizheng/aio-fix-close-2
[Aio] Another fix for close mechanism on Windows
2 parents 8eed1b0 + 5cf41f3 commit dc05091

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/python/grpcio_tests/tests_aio/unit/metadata_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,8 @@ async def test_trailing_metadata(self):
210210
self.assertEqual(_RESPONSE, await call)
211211
self.assertEqual(grpc.StatusCode.OK, await call.code())
212212

213+
@unittest.skipIf(platform.system() == 'Windows',
214+
'https://github.com/grpc/grpc/issues/21943')
213215
async def test_invalid_metadata(self):
214216
multicallable = self._client.unary_unary(_TEST_CLIENT_TO_SERVER)
215217
for exception_type, metadata in _INVALID_METADATA_TEST_CASES:

0 commit comments

Comments
 (0)