Skip to content

Commit 52f908b

Browse files
authored
Fix assertion in TestSession.test_serialize (#860)
1 parent a438592 commit 52f908b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_serialize(self, session):
7373
self.assertEqual(new_msg["parent_header"], msg["parent_header"])
7474
self.assertEqual(new_msg["metadata"], msg["metadata"])
7575
# ensure floats don't come out as Decimal:
76-
self.assertEqual(type(new_msg["content"]["b"]), type(new_msg["content"]["b"]))
76+
self.assertEqual(type(new_msg["content"]["b"]), type(msg["content"]["b"]))
7777

7878
def test_default_secure(self, session):
7979
assert isinstance(session.key, bytes)

0 commit comments

Comments
 (0)