diff --git a/integration_tests/test_cli.py b/integration_tests/test_cli.py index 3ea94a2fe..8061afe09 100644 --- a/integration_tests/test_cli.py +++ b/integration_tests/test_cli.py @@ -12,9 +12,7 @@ def test_create_robyn_app(): "project_type": "no-db", } with patch("robyn.cli.os.makedirs") as mock_makedirs: - with patch("robyn.cli.shutil.copytree") as mock_copytree, patch( - "robyn.os.remove" - ) as mock_remove: + with patch("robyn.cli.shutil.copytree") as mock_copytree, patch("robyn.os.remove") as mock_remove: create_robyn_app() mock_makedirs.assert_called_once() mock_copytree.assert_called_once()