We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8eed1b0 + 5cf41f3 commit dc05091Copy full SHA for dc05091
src/python/grpcio_tests/tests_aio/unit/metadata_test.py
@@ -210,6 +210,8 @@ async def test_trailing_metadata(self):
210
self.assertEqual(_RESPONSE, await call)
211
self.assertEqual(grpc.StatusCode.OK, await call.code())
212
213
+ @unittest.skipIf(platform.system() == 'Windows',
214
+ 'https://github.com/grpc/grpc/issues/21943')
215
async def test_invalid_metadata(self):
216
multicallable = self._client.unary_unary(_TEST_CLIENT_TO_SERVER)
217
for exception_type, metadata in _INVALID_METADATA_TEST_CASES:
0 commit comments