diff --git a/tests/processor/src/tests/scan.rs b/tests/processor/src/tests/batch.rs similarity index 99% rename from tests/processor/src/tests/scan.rs rename to tests/processor/src/tests/batch.rs index cbfc1b7b..4bbd2b42 100644 --- a/tests/processor/src/tests/scan.rs +++ b/tests/processor/src/tests/batch.rs @@ -10,7 +10,7 @@ use dockertest::DockerTest; use crate::{*, tests::*}; #[test] -fn scan_test() { +fn batch_test() { for network in [NetworkId::Bitcoin, NetworkId::Monero] { let mut coordinators = vec![]; let mut test = DockerTest::new(); diff --git a/tests/processor/src/tests/mod.rs b/tests/processor/src/tests/mod.rs index a63bd544..28805c4d 100644 --- a/tests/processor/src/tests/mod.rs +++ b/tests/processor/src/tests/mod.rs @@ -1,7 +1,7 @@ mod key_gen; pub(crate) use key_gen::key_gen; -mod scan; +mod batch; pub(crate) const COORDINATORS: usize = 4; pub(crate) const THRESHOLD: usize = ((COORDINATORS * 2) / 3) + 1;