bazelbuild / rules_webtesting

Bazel rules to allow testing against a browser with WebDriver.
Apache License 2.0
96 stars 56 forks source link

Replace instances of to_json() method with json.encode(..) #474

Closed c-mita closed 5 months ago

c-mita commented 5 months ago

The to_json and to_proto methods on struct are deprecated and will be removed. The "json" and "proto" builtin modules should be used instead.

This replaces instances of foo.to_json() with json.encode(foo).