Skip to content

Commit 4b3ad40

Browse files
committed
Move channel_acceptance_tests.rs to channel_open_tests.rs
1 parent 633cb49 commit 4b3ad40

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

lightning/src/ln/channel_acceptance_tests.rs renamed to lightning/src/ln/channel_open_tests.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// This file is Copyright its original authors, visible in version control
2+
// history.
3+
//
4+
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5+
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7+
// You may not use this file except in accordance with one or both of these
8+
// licenses.
9+
10+
//! Tests that test the channel open process.
11+
112
use crate::events::Event;
213
use crate::ln::channelmanager::{MAX_UNFUNDED_CHANNEL_PEERS, MAX_UNFUNDED_CHANS_PER_PEER};
314
use crate::ln::msgs::{

lightning/src/ln/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pub mod bolt11_payment_tests;
7777
mod chanmon_update_fail_tests;
7878
#[cfg(test)]
7979
#[allow(unused_mut)]
80-
mod channel_acceptance_tests;
80+
mod channel_open_tests;
8181
#[cfg(test)]
8282
#[allow(unused_mut)]
8383
mod channel_type_tests;

0 commit comments

Comments
 (0)