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 337c7c0 commit 2c78bb4Copy full SHA for 2c78bb4
tests/test_data_api/conftest.py
@@ -225,7 +225,9 @@ def view_json_diff(
225
sort_keys: bool = True,
226
indent: int = 2,
227
) -> str:
228
- # Convert each JSON object to a normalized, pretty string
+ """
229
+ Generate a human-readable diff between two JSON objects
230
231
a_str = json.dumps(a, indent=indent, sort_keys=sort_keys)
232
b_str = json.dumps(b, indent=indent, sort_keys=sort_keys)
233
0 commit comments