Skip to content

Commit d6a54b1

Browse files
committed
push
1 parent c1b4169 commit d6a54b1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_json.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ def test_json_encoder():
3131
}
3232

3333
result = json.dumps(obj, cls=EventSerializer)
34+
print(result)
3435
assert (
35-
'{"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}]}'
3637
in result
3738
)
3839

0 commit comments

Comments
 (0)