You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content="The hail in Wales falls mainly on the snails.",
request_id="some_value",
other_request_id="",
),
metadata=[('some-key', 'some_value')]
)
def test_metadata_string(echo):
echo.echo(
showcase.EchoRequest(
content="The hail in Wales falls mainly on the snails.",
request_id="some_value",
other_request_id="",
),
metadata=[('Some-Key', 'some_value')] <----- `Some-key` will fail but `some-key` works
)
See the following test which fails when an uppercase is used in the metadata key
gapic-generator-python/tests/system/test_request_metadata.py
Lines 20 to 28 in c72411d
The text was updated successfully, but these errors were encountered: