aboutsummaryrefslogtreecommitdiff
path: root/tests/asyncio/test_operation_async.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/asyncio/test_operation_async.py')
-rw-r--r--tests/asyncio/test_operation_async.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/asyncio/test_operation_async.py b/tests/asyncio/test_operation_async.py
index e35d139..907cda7 100644
--- a/tests/asyncio/test_operation_async.py
+++ b/tests/asyncio/test_operation_async.py
@@ -177,15 +177,15 @@ def test_from_gapic():
operations_client,
struct_pb2.Struct,
metadata_type=struct_pb2.Struct,
- grpc_metadata=[('x-goog-request-params', 'foo')]
+ grpc_metadata=[("x-goog-request-params", "foo")],
)
assert future._result_type == struct_pb2.Struct
assert future._metadata_type == struct_pb2.Struct
assert future.operation.name == TEST_OPERATION_NAME
assert future.done
- assert future._refresh.keywords["metadata"] == [('x-goog-request-params', 'foo')]
- assert future._cancel.keywords["metadata"] == [('x-goog-request-params', 'foo')]
+ assert future._refresh.keywords["metadata"] == [("x-goog-request-params", "foo")]
+ assert future._cancel.keywords["metadata"] == [("x-goog-request-params", "foo")]
def test_deserialize():