Skip to content

Commit

Permalink
Merge pull request #44 from bobh66/fix_test
Browse files Browse the repository at this point in the history
fix(tests): fix want/got mapping in test output
  • Loading branch information
negz committed Apr 3, 2024
2 parents c866e13 + 443498c commit 8518049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class TestCase:
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",
)

Expand Down

0 comments on commit 8518049

Please sign in to comment.