From 08200f03a7ce71c7ab183e9fc51b0e536a409ff9 Mon Sep 17 00:00:00 2001 From: niftynei Date: Fri, 11 Dec 2020 13:58:35 -0600 Subject: [PATCH] df-tests: test_multifunding_v2_v1_mixed update to use flag Now that we've got a fancy flag to enable dual funding, let's use it --- tests/test_connection.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index a0102e023..a95f795ea 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -1260,16 +1260,17 @@ def test_funding_external_wallet(node_factory, bitcoind): @unittest.skipIf(not EXPERIMENTAL_FEATURES, "requires opt_dual_fund") -@unittest.skipIf(not DEVELOPER, "requires dev-force-features") def test_multifunding_v2_v1_mixed(node_factory, bitcoind): ''' Simple test for multifundchannel, using v1 + v2 ''' accepter_plugin = os.path.join(os.path.dirname(__file__), 'plugins/df_accepter.py') - options = [{'dev-force-features': '+223'}, - {'plugin': accepter_plugin, 'dev-force-features': '+223'}, - {'plugin': accepter_plugin, 'dev-force-features': '+223'}, + options = [{'experimental-dual-fund': None}, + {'plugin': accepter_plugin, + 'experimental-dual-fund': None}, + {'plugin': accepter_plugin, + 'experimental-dual-fund': None}, {}] l1, l2, l3, l4 = node_factory.get_nodes(4, opts=options)