Skip to content

Commit d6638ee

Browse files
committed
Move myeclpay tests to core tests
1 parent c003c70 commit d6638ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

tests/modules/test_payment.py renamed to tests/core/test_payment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ async def test_webhook_payment_callback(
296296
) -> None:
297297
# We patch the callback to be able to check if it was called
298298
mocked_callback = mocker.patch(
299-
"tests.test_payment.callback",
299+
"tests.core.test_payment.callback",
300300
)
301301

302302
# We patch the module_list to inject our custom test module
@@ -337,7 +337,7 @@ async def test_webhook_payment_callback_fail(
337337
) -> None:
338338
# We patch the callback to be able to check if it was called
339339
mocked_callback = mocker.patch(
340-
"tests.test_payment.callback",
340+
"tests.core.test_payment.callback",
341341
side_effect=ValueError("Test error"),
342342
)
343343

0 commit comments

Comments
 (0)