We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2d79b commit 156707cCopy full SHA for 156707c
tests/test_main.py
@@ -1,12 +1,12 @@
1
import pytest
2
from fastapi.testclient import TestClient
3
from function.core.config import settings
4
-from function.function_app import app
+from function.function_app import fastapi_app
5
6
7
@pytest.fixture(scope="module")
8
def client() -> TestClient:
9
- return TestClient(app)
+ return TestClient(fastapi_app)
10
11
12
@pytest.mark.parametrize("version", ("v1",))
0 commit comments