Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial orjson support take 3 #73849

Merged
merged 16 commits into from
Jun 22, 2022
Prev Previous commit
Next Next commit
fix tests
  • Loading branch information
bdraco committed Jun 15, 2022
commit b4c08d749b7184e8de5e7ed360e4bb33afbf1f05
2 changes: 1 addition & 1 deletion tests/components/http/test_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def test_invalid_json(caplog):
with pytest.raises(HTTPInternalServerError):
view.json("\ud800")

assert "\ud800" in caplog.text
assert "Unable to serialize to JSON" in caplog.text


async def test_nan_serialized_to_null(caplog):
Expand Down