File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,6 @@ def test_app_dir_non_default() -> None:
8383 with pytest .raises (FastAPICLIException ) as e :
8484 get_import_string ()
8585 assert (
86- "Could not find a default file to run, please provide an explicit path "
86+ "Could not find a default FastAPI app file. Please ensure one of the following files exists "
8787 in e .value .args [0 ]
8888 )
Original file line number Diff line number Diff line change @@ -98,6 +98,6 @@ def test_non_default_file(capsys: CaptureFixture[str]) -> None:
9898 with pytest .raises (FastAPICLIException ) as e :
9999 get_import_string ()
100100 assert (
101- "Could not find a default file to run, please provide an explicit path "
101+ "Could not find a default FastAPI app file. Please ensure one of the following files exists "
102102 in e .value .args [0 ]
103103 )
You can’t perform that action at this time.
0 commit comments