From ca1140ca6ba86e44eb7ebbdb2ac67b5413e23466 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Wed, 7 Jul 2021 19:33:53 -0700 Subject: [PATCH] copy/paste error --- tests/serialize_simplejson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/serialize_simplejson.py b/tests/serialize_simplejson.py index 0e787aa..9bff052 100644 --- a/tests/serialize_simplejson.py +++ b/tests/serialize_simplejson.py @@ -19,5 +19,5 @@ def test_simplejson_fallback() -> None: # simplejson should serialize namedtuple properly res: str = dumps(_A(x=1, y=2.0)) - assert jsn.loads(res) == {"x": 1, "y": 2.0} + assert json.loads(res) == {"x": 1, "y": 2.0}