copy/paste error

This commit is contained in:
Sean Breckenridge 2021-07-07 19:33:53 -07:00
parent 101a20d156
commit ca1140ca6b

View file

@ -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}