From 5415015502d23f1805b1ede70aa3baa0296b48af Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 06:50:30 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in 4eb125a according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- web/tests/test_web.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/tests/test_web.py b/web/tests/test_web.py index d1101bd..f878397 100644 --- a/web/tests/test_web.py +++ b/web/tests/test_web.py @@ -1,13 +1,16 @@ # web/tests/test_web.py import pytest + from app import app + @pytest.fixture def client(): - app.config['TESTING'] = True + app.config["TESTING"] = True with app.test_client() as client: yield client + def test_index(client): - response = client.get('/') + response = client.get("/") assert response.status_code == 200