Skip to content

Commit 2625123

Browse files
authored
Merge pull request #105976 from ggailey777/patch-7
Fix project folder name
2 parents 353c6f8 + 5136369 commit 2625123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-reference-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To reference modules local to a function, you can use the relative import syntax
9696
from . import example
9797
```
9898

99-
When deploying your project to a function app in Azure, the entire content of the *FunctionApp* folder should be included in the package, but not the folder itself. We recommend that you maintain your tests in a folder separate from the project folder, in this example `tests`. This keeps you from deploying test code with your app. For more information, see [Unit Testing](#unit-testing).
99+
When deploying your project to a function app in Azure, the entire contents of the main project (*\_\_app\_\_*) folder should be included in the package, but not the folder itself. We recommend that you maintain your tests in a folder separate from the project folder, in this example `tests`. This keeps you from deploying test code with your app. For more information, see [Unit Testing](#unit-testing).
100100

101101
## Triggers and Inputs
102102

0 commit comments

Comments
 (0)