Skip to content

Commit 3902b3a

Browse files
committed
Making imports relative
1 parent e6486fa commit 3902b3a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/decorators/test_dapr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
DAPR_BINDING_TRIGGER, DAPR_INVOKE, DAPR_PUBLISH, DAPR_SECRET, \
88
DAPR_SERVICE_INVOCATION_TRIGGER, DAPR_STATE, DAPR_TOPIC_TRIGGER
99
from azure.functions.decorators.function_app import FunctionApp
10-
from tests.testutils import assert_json
10+
from ..testutils import assert_json
1111

1212

1313
class TestDapr(unittest.TestCase):

tests/decorators/test_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from azure.functions.decorators.function_app import FunctionApp
1313
from azure.functions.decorators.http import HttpTrigger, HttpMethod
1414
from azure.functions.decorators.timer import TimerTrigger
15-
from tests.testutils import assert_json
15+
from ..testutils import assert_json
1616

1717

1818
class TestFunctionsApp(unittest.TestCase):

tests/decorators/test_function_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
HttpMethod
2020
from azure.functions.decorators.retry_policy import RetryPolicy
2121
from test_core import DummyTrigger
22-
from tests.testutils import assert_json
22+
from ..testutils import assert_json
2323

2424

2525
class TestFunction(unittest.TestCase):

0 commit comments

Comments
 (0)