Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a552431

Browse files
committedJun 19, 2024·
Fix module prefix name
1 parent eb809ea commit a552431

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎tests/functional/idempotency/test_idempotency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
from tests.functional.utils import json_serialize, load_event
6262

6363
TABLE_NAME = "TEST_TABLE"
64-
TESTS_MODULE_PREFIX = "test-func.functional.idempotency.test_idempotency"
64+
TESTS_MODULE_PREFIX = "test-func.tests.functional.idempotency.test_idempotency"
6565

6666

6767
def get_dataclasses_lib():

‎tests/functional/idempotency/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def build_idempotency_put_item_stub(
1919
data: Dict,
2020
function_name: str = "test-func",
2121
function_qualified_name: str = "test_idempotent_lambda_first_execution_event_mutation.<locals>",
22-
module_name: str = "functional.idempotency.test_idempotency",
22+
module_name: str = "tests.functional.idempotency.test_idempotency",
2323
handler_name: str = "lambda_handler",
2424
) -> Dict:
2525
idempotency_key_hash = (
@@ -57,7 +57,7 @@ def build_idempotency_update_item_stub(
5757
handler_response: Dict,
5858
function_name: str = "test-func",
5959
function_qualified_name: str = "test_idempotent_lambda_first_execution_event_mutation.<locals>",
60-
module_name: str = "functional.idempotency.test_idempotency",
60+
module_name: str = "tests.functional.idempotency.test_idempotency",
6161
handler_name: str = "lambda_handler",
6262
) -> Dict:
6363
idempotency_key_hash = (

‎tests/unit/test_tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Maintenance: This should move to Functional tests and use Fake over mocks.
1111

12-
MODULE_PREFIX = "unit.test_tracing"
12+
MODULE_PREFIX = "tests.unit.test_tracing"
1313

1414

1515
@pytest.fixture

0 commit comments

Comments
 (0)
Please sign in to comment.