fix: remove ruff ignore SIM300 (#11810)

This commit is contained in:
barabicu 2024-12-19 19:30:51 +09:00 committed by GitHub
commit d057067543
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 12 additions and 13 deletions

View file

@ -384,7 +384,7 @@ def test_mock_404(setup_http_mock):
assert result.outputs is not None
resp = result.outputs
assert 404 == resp.get("status_code")
assert resp.get("status_code") == 404
assert "Not Found" in resp.get("body", "")