From 807f17e18af29c328ea92921b5d71cc68d22304b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 20 Mar 2025 10:44:43 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_cors/test_tutorial001.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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