From f155900bc750b27bd9ecb704963d26d03127188e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 03:44:13 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- integration_tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/test_cli.py b/integration_tests/test_cli.py index 804f2e43..7c369d5e 100644 --- a/integration_tests/test_cli.py +++ b/integration_tests/test_cli.py @@ -18,6 +18,7 @@ def test_create_robyn_app_simple(): mock_makedirs.assert_called_once() mock_copytree.assert_called_once() + def test_create_robyn_app_structured(): with patch("robyn.cli.prompt") as mock_prompt: mock_prompt.return_value = { @@ -33,7 +34,6 @@ def test_create_robyn_app_structured(): mock_copytree.assert_called_once() - def test_docs(): with patch("robyn.cli.webbrowser.open") as mock_open: docs()