From 443498c260477a3fb1e50031263ea54972a9af19 Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Tue, 2 Apr 2024 09:50:05 -0500 Subject: [PATCH] fix(tests): fix want/got mapping in test output Signed-off-by: Bob Haddleton --- tests/test_fn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_fn.py b/tests/test_fn.py index 10d3030..b98aa5b 100644 --- a/tests/test_fn.py +++ b/tests/test_fn.py @@ -49,8 +49,8 @@ class TestFunctionRunner(unittest.IsolatedAsyncioTestCase): for case in cases: got = await runner.RunFunction(case.req, None) self.assertEqual( - json_format.MessageToDict(got), json_format.MessageToDict(case.want), + json_format.MessageToDict(got), "-want, +got", )