Merge pull request #44 from bobh66/fix_test

fix(tests): fix want/got mapping in test output
This commit is contained in:
Nic Cope 2024-04-02 20:06:42 -07:00 committed by GitHub
commit 851804958c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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",
)