Remove v1 peer state channel maps & refactor with ChannelPhase
[rust-lightning] / lightning / src / ln / payment_tests.rs
index 1239c77e5f2e7cfa241db86c3d6724574f0b58cf..0f78df5114ef164766796c9a1f95a3bc914591e0 100644 (file)
@@ -1717,7 +1717,7 @@ fn do_test_intercepted_payment(test: InterceptTest) {
                let temp_chan_id = nodes[1].node.create_channel(nodes[2].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
                let unusable_chan_err = nodes[1].node.forward_intercepted_htlc(intercept_id, &temp_chan_id, nodes[2].node.get_our_node_id(), expected_outbound_amount_msat).unwrap_err();
                assert_eq!(unusable_chan_err , APIError::ChannelUnavailable {
-                       err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
+                       err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
                                temp_chan_id, nodes[2].node.get_our_node_id()) });
                assert_eq!(nodes[1].node.get_and_clear_pending_msg_events().len(), 1);