We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b4169 commit d6a54b1Copy full SHA for d6a54b1
1 file changed
tests/test_json.py
@@ -31,8 +31,9 @@ def test_json_encoder():
31
}
32
33
result = json.dumps(obj, cls=EventSerializer)
34
+ print(result)
35
assert (
- '{"foo": "bar", "bar": "2021-01-01T00:00:00Z", "date": "2024-01-01", "messages": [{"content": "I love programming!", "additional_kwargs": {}, "response_metadata": {}, "type": "human", "name": null, "id": null, "example": false}]}'
36
+ '{"foo": "bar", "bar": "2021-01-01T00:00:00Z", "date": "2024-01-01", "messages": [{"content": "I love programming!", "additional_kwargs": {}, "response_metadata": {}, "type": "human", "name": null, "id": null}]}'
37
in result
38
)
39
0 commit comments