Add two more invalid metadata test cases

pull/21647/head
Lidi Zheng 5 years ago
parent ec2f394803
commit fb2b4ec82b
  1. 8
      src/python/grpcio_tests/tests_aio/unit/metadata_test.py

@ -58,6 +58,14 @@ _INVALID_METADATA_TEST_CASES = (
TypeError,
(('normal', object()),),
),
(
TypeError,
object(),
),
(
TypeError,
(object(),),
),
)

Loading…
Cancel
Save