@@ -386,7 +386,7 @@ def test_exists_successfully_when_deployment_is_done_when_app_is_configured(
386386 team_id = team_data ["id" ]
387387 deployment_data = _get_random_deployment (app_id = app_id )
388388
389- config_path = tmp_path / ".fastapi " / "cloud.json"
389+ config_path = tmp_path / ".fastapicloud " / "cloud.json"
390390
391391 config_path .parent .mkdir (parents = True , exist_ok = True )
392392 config_path .write_text (f'{{"app_id": "{ app_id } ", "team_id": "{ team_id } "}}' )
@@ -439,7 +439,7 @@ def test_shows_error_when_deployment_build_fails(
439439 team_id = team_data ["id" ]
440440 deployment_data = _get_random_deployment (app_id = app_id )
441441
442- config_path = tmp_path / ".fastapi " / "cloud.json"
442+ config_path = tmp_path / ".fastapicloud " / "cloud.json"
443443
444444 config_path .parent .mkdir (parents = True , exist_ok = True )
445445 config_path .write_text (f'{{"app_id": "{ app_id } ", "team_id": "{ team_id } "}}' )
@@ -573,18 +573,18 @@ def test_creates_config_folder_and_creates_git_ignore(
573573) -> None :
574574 _deploy_without_waiting (respx_mock , tmp_path )
575575
576- assert (tmp_path / ".fastapi " / "cloud.json" ).exists ()
577- assert (tmp_path / ".fastapi " / "README.md" ).exists ()
578- assert (tmp_path / ".fastapi " / ".gitignore" ).read_text () == "*"
576+ assert (tmp_path / ".fastapicloud " / "cloud.json" ).exists ()
577+ assert (tmp_path / ".fastapicloud " / "README.md" ).exists ()
578+ assert (tmp_path / ".fastapicloud " / ".gitignore" ).read_text () == "*"
579579
580580
581581@pytest .mark .respx (base_url = settings .base_api_url )
582582def test_does_not_duplicate_entry_in_git_ignore (
583583 logged_in_cli : None , tmp_path : Path , respx_mock : respx .MockRouter
584584) -> None :
585585 git_ignore_path = tmp_path / ".gitignore"
586- git_ignore_path .write_text (".fastapi \n " )
586+ git_ignore_path .write_text (".fastapicloud \n " )
587587
588588 _deploy_without_waiting (respx_mock , tmp_path )
589589
590- assert git_ignore_path .read_text () == ".fastapi \n "
590+ assert git_ignore_path .read_text () == ".fastapicloud \n "
0 commit comments