Skip to content

Commit 8518049

Browse files
authored
Merge pull request #44 from bobh66/fix_test
fix(tests): fix want/got mapping in test output
2 parents c866e13 + 443498c commit 8518049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class TestCase:
4949
for case in cases:
5050
got = await runner.RunFunction(case.req, None)
5151
self.assertEqual(
52-
json_format.MessageToDict(got),
5352
json_format.MessageToDict(case.want),
53+
json_format.MessageToDict(got),
5454
"-want, +got",
5555
)
5656

0 commit comments

Comments
 (0)