From b397ddb008fc09d3c7671f43117e5306c60cec4b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Mon, 16 Mar 2026 00:52:48 +0000 Subject: [PATCH] tests: move revealer and timelock_recovery stuff to tests/plugins/ --- tests/plugins/__init__.py | 0 tests/{ => plugins}/test_revealer.py | 2 +- tests/{ => plugins}/test_timelock_recovery.py | 2 +- tests/{ => plugins}/test_timelock_recovery/default_wallet | 0 4 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 tests/plugins/__init__.py rename tests/{ => plugins}/test_revealer.py (99%) rename tests/{ => plugins}/test_timelock_recovery.py (99%) rename tests/{ => plugins}/test_timelock_recovery/default_wallet (100%) diff --git a/tests/plugins/__init__.py b/tests/plugins/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/test_revealer.py b/tests/plugins/test_revealer.py similarity index 99% rename from tests/test_revealer.py rename to tests/plugins/test_revealer.py index d2693cae8..79b279162 100644 --- a/tests/test_revealer.py +++ b/tests/plugins/test_revealer.py @@ -1,6 +1,6 @@ from electrum.plugins.revealer.revealer import RevealerPlugin -from . import ElectrumTestCase +from .. import ElectrumTestCase class TestRevealer(ElectrumTestCase): diff --git a/tests/test_timelock_recovery.py b/tests/plugins/test_timelock_recovery.py similarity index 99% rename from tests/test_timelock_recovery.py rename to tests/plugins/test_timelock_recovery.py index bde63816a..8c57b19c6 100644 --- a/tests/test_timelock_recovery.py +++ b/tests/plugins/test_timelock_recovery.py @@ -12,7 +12,7 @@ from electrum.wallet_db import WalletDB from electrum.plugins.timelock_recovery.timelock_recovery import TimelockRecoveryContext, TimelockRecoveryPlugin -from . import ElectrumTestCase +from .. import ElectrumTestCase class TestTimelockRecovery(ElectrumTestCase): diff --git a/tests/test_timelock_recovery/default_wallet b/tests/plugins/test_timelock_recovery/default_wallet similarity index 100% rename from tests/test_timelock_recovery/default_wallet rename to tests/plugins/test_timelock_recovery/default_wallet