copy/paste error
This commit is contained in:
parent
101a20d156
commit
ca1140ca6b
1 changed files with 1 additions and 1 deletions
|
@ -19,5 +19,5 @@ def test_simplejson_fallback() -> None:
|
||||||
|
|
||||||
# simplejson should serialize namedtuple properly
|
# simplejson should serialize namedtuple properly
|
||||||
res: str = dumps(_A(x=1, y=2.0))
|
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}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue