diff --git a/tests/test_tutorial/test_cors/test_tutorial001.py b/tests/test_tutorial/test_cors/test_tutorial001.py index 9ce61735d..89eea154b 100644 --- a/tests/test_tutorial/test_cors/test_tutorial001.py +++ b/tests/test_tutorial/test_cors/test_tutorial001.py @@ -30,7 +30,10 @@ class TestCORS: assert "access-control-allow-credentials" in response.headers assert "access-control-max-age" in response.headers assert "access-control-allow-headers" in response.headers - assert response.headers["access-control-allow-headers"] == "X-Example-1, X-Example-2" + assert ( + response.headers["access-control-allow-headers"] + == "X-Example-1, X-Example-2" + ) # response headers: cors: origin assert "access-control-allow-origin" in response.headers assert response.headers["access-control-allow-origin"] == origin_url @@ -52,7 +55,10 @@ class TestCORS: assert "access-control-allow-credentials" in response.headers assert "access-control-max-age" in response.headers assert "access-control-allow-headers" in response.headers - assert response.headers["access-control-allow-headers"] == "X-Example-1, X-Example-2" + assert ( + response.headers["access-control-allow-headers"] + == "X-Example-1, X-Example-2" + ) # response headers: cors: origin assert "access-control-allow-origin" not in response.headers