From ba898ead5d142f6b72c284f4750d5ca61245e89b Mon Sep 17 00:00:00 2001 From: Doug Guthrie Date: Sat, 6 Apr 2024 07:38:14 -0600 Subject: [PATCH] Fix bad test again --- tests/test_cli.py | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 0957f28..2f18e26 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -85,23 +85,27 @@ def test_get_project(): @pytest.mark.dependency(depends=["test_list_projects"]) def test_list_environments_old(): _test_cloud_cli( - "list-environments", - "--account-id", - ACCOUNT_ID, - "--project-id", - PROJECT_ID, + [ + "list-environments", + "--account-id", + ACCOUNT_ID, + "--project-id", + PROJECT_ID, + ], ) @pytest.mark.dependency(depends=["test_list_projects"]) def test_list_environments(): _test_cloud_cli( - "environments", - "list", - "--account-id", - ACCOUNT_ID, - "--project-id", - PROJECT_ID, + [ + "environments", + "list", + "--account-id", + ACCOUNT_ID, + "--project-id", + PROJECT_ID, + ], )