Skip to content

Commit b5f7f04

Browse files
committed
Fix import path for azure
1 parent 937b37b commit b5f7f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/framework_azurefunctions/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
@pytest.fixture(scope="session", autouse=True)
3535
def dispatcher():
3636
"""Fixture that starts the worker on a separate thread and returns the dispatcher instance."""
37-
from .sample_app.worker import start_dispatcher_thread
37+
from .sample_application.worker import start_dispatcher_thread
3838

3939
# Start the dispatcher thread
4040
dispatcher_ = start_dispatcher_thread()
@@ -55,6 +55,6 @@ def is_async(request):
5555
@pytest.fixture(scope="session")
5656
def send_invocation(is_async, dispatcher):
5757
"""Fixture that returns the _send_event interface."""
58-
from .sample_app.messages import send_invocation_event
58+
from .sample_application.messages import send_invocation_event
5959

6060
return functools.partial(send_invocation_event, dispatcher, is_async=is_async)

0 commit comments

Comments
 (0)