Skip to content

Commit 0ff17da

Browse files
🎨 Auto format
1 parent 7be9776 commit 0ff17da

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎tests/test_cli_deploy.py‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -468,9 +468,7 @@ def test_shows_api_message_when_create_app_is_forbidden(
468468
steps = [Keys.ENTER, Keys.ENTER, *"demo", Keys.ENTER, Keys.ENTER, Keys.ENTER]
469469
team = _get_random_team()
470470

471-
respx_mock.get("/teams/").mock(
472-
return_value=Response(200, json={"data": [team]})
473-
)
471+
respx_mock.get("/teams/").mock(return_value=Response(200, json={"data": [team]}))
474472
respx_mock.post(
475473
"/apps/", json={"name": "demo", "team_id": team["id"], "directory": None}
476474
).mock(
@@ -490,7 +488,9 @@ def test_shows_api_message_when_create_app_is_forbidden(
490488

491489
assert result.exit_code == 1
492490
assert "You don't have permissions for this resource" in result.output
493-
assert "API message: Your account cannot create apps for this team." in result.output
491+
assert (
492+
"API message: Your account cannot create apps for this team." in result.output
493+
)
494494

495495

496496
@pytest.mark.respx

0 commit comments

Comments
 (0)