style(tests): fix formatting in test files

- Remove extra blank lines
- Run ruff format on test files
This commit is contained in:
copilot-swe-agent[bot]
2026-02-13 11:48:36 +00:00
parent 65118dc071
commit ad911e8d6d
3 changed files with 13 additions and 14 deletions
+3 -1
View File
@@ -59,7 +59,9 @@ class TestStatusDashboard:
@patch("app.views.status.os.path.exists")
@patch("builtins.open", new_callable=mock_open, read_data="12:docker:/container_id")
@pytest.mark.asyncio
async def test_detects_docker_environment(self, mock_file, mock_exists, mock_settings, mock_templates, mock_providers):
async def test_detects_docker_environment(
self, mock_file, mock_exists, mock_settings, mock_templates, mock_providers
):
"""Test detects Docker environment."""
from app.views.status import status_dashboard