diff --git a/monitor/test_monitor.py b/monitor/test_monitor.py index f2dbbb1..0774c61 100644 --- a/monitor/test_monitor.py +++ b/monitor/test_monitor.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "monitor.py") -def test_helpme_starts(node_factory): +def test_monitor_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/persistent-channels/test_persistent-channels.py b/persistent-channels/test_persistent-channels.py index a97815a..fb8df77 100644 --- a/persistent-channels/test_persistent-channels.py +++ b/persistent-channels/test_persistent-channels.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "persistent-channels.py") -def test_helpme_starts(node_factory): +def test_persistent_channels_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/probe/test_probe.py b/probe/test_probe.py index 95e4a9f..b359dd4 100644 --- a/probe/test_probe.py +++ b/probe/test_probe.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "probe.py") -def test_helpme_starts(node_factory): +def test_probe_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/prometheus/test_prometheus.py b/prometheus/test_prometheus.py index ee7f1ca..21d960d 100644 --- a/prometheus/test_prometheus.py +++ b/prometheus/test_prometheus.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "prometheus.py") -def test_helpme_starts(node_factory): +def test_prometheus_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/rebalance/test_rebalance.py b/rebalance/test_rebalance.py index e0e8331..5c8361c 100644 --- a/rebalance/test_rebalance.py +++ b/rebalance/test_rebalance.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "rebalance.py") -def test_helpme_starts(node_factory): +def test_rebalance_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/sendinvoiceless/test_sendinvoiceless.py b/sendinvoiceless/test_sendinvoiceless.py index 4499a1c..0ca4feb 100644 --- a/sendinvoiceless/test_sendinvoiceless.py +++ b/sendinvoiceless/test_sendinvoiceless.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "sendinvoiceless.py") -def test_helpme_starts(node_factory): +def test_sendinvoiceless_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path) diff --git a/zmq/test_zmq.py b/zmq/test_zmq.py index 6dc07aa..f78e600 100644 --- a/zmq/test_zmq.py +++ b/zmq/test_zmq.py @@ -4,7 +4,7 @@ from pyln.testing.fixtures import * # noqa: F401,F403 plugin_path = os.path.join(os.path.dirname(__file__), "cl-zmq.py") -def test_helpme_starts(node_factory): +def test_zmq_starts(node_factory): l1 = node_factory.get_node() # Test dynamically l1.rpc.plugin_start(plugin_path)