Skip to content

Commit

Permalink
Merge pull request #707 from martinRenou/add_bytes_test
Browse files Browse the repository at this point in the history
Add test for serializing bytes
  • Loading branch information
minrk authored Sep 30, 2021
2 parents 5e3ca02 + 32f0ec7 commit 123d3ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jupyter_client/tests/test_jsonutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def test_json_default():
(True, None),
(False, None),
(None, None),
({"key": b"\xFF"}, {"key": "/w==\n"}),
# Containers
([1, 2], None),
((1, 2), [1, 2]),
Expand Down

0 comments on commit 123d3ef

Please sign in to comment.