We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff5b8a commit cef0321Copy full SHA for cef0321
tests/test_inputs.py
@@ -204,8 +204,8 @@ def test_binary_compatibility(test_data: TestData) -> None:
204
reference_instance = Parse(sample.json, reference_module().Test())
205
reference_binary_output = reference_instance.SerializeToString()
206
207
- plugin_instance_from_json: betterproto.Message = (
208
- plugin_module.Test().from_json(sample.json)
+ plugin_instance_from_json: betterproto.Message = plugin_module.Test().from_json(
+ sample.json
209
)
210
plugin_instance_from_binary = plugin_module.Test.FromString(
211
reference_binary_output
0 commit comments