Browse Source

Update tests

pull/9700/head
Joakim Nordling 1 month ago
parent
commit
f4b2ff41bc
  1. 2
      tests/test_application.py
  2. 2
      tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

2
tests/test_application.py

@ -43,7 +43,7 @@ def test_redoc():
response = client.get("/redoc")
assert response.status_code == 200, response.text
assert response.headers["content-type"] == "text/html; charset=utf-8"
assert "redoc@2.0.0" in response.text
assert "redoc@2.4.0" in response.text
def test_enum_status_code_response():

2
tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

@ -33,7 +33,7 @@ def test_swagger_ui_oauth2_redirect_html(client: TestClient):
def test_redoc_html(client: TestClient):
response = client.get("/redoc")
assert response.status_code == 200, response.text
assert "https://unpkg.com/redoc@2.0.0/bundles/redoc.standalone.js" in response.text
assert "https://unpkg.com/redoc@2.4.0/bundles/redoc.standalone.js" in response.text
def test_api(client: TestClient):

Loading…
Cancel
Save