From 73270aef28a70d4031b989dd5ce6a1c9d4b30244 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Wed, 31 Jan 2024 22:01:59 -0500 Subject: [PATCH] Fix proto task def test --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index 77efb00a..a27be3c8 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -81,7 +81,7 @@ def test_create_one_task_proto_any(self): proto_any = any_pb2.Any() proto_any.Pack(proto) results = self.client.create_tasks( - [TaskInput(coroutine_uri="my-cool-coroutine", input=proto)] + [TaskInput(coroutine_uri="my-cool-coroutine", input=proto_any)] ) id = results[0] created_tasks = self.servicer.created_tasks