From 61d46dccd4b71fe0074e2d7b27b841a832c08786 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 25 Jul 2023 18:10:05 -0400 Subject: [PATCH] Rename scan_test to batch_test --- tests/processor/src/tests/{scan.rs => batch.rs} | 2 +- tests/processor/src/tests/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/processor/src/tests/{scan.rs => batch.rs} (99%) 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;