From 507bc2237a80ba9839e33ec1b465d2a44fb4bbbb Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Fri, 11 Nov 2022 09:19:35 -0500 Subject: [PATCH] node: make tests in tests mod run Fix a problem from a recent commit which caused tests in the tests module not to run. The list of modules in 'lib.rs' should use the 'tests' module's new location. Signed-off-by: Slack Coder --- radicle-node/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicle-node/src/lib.rs b/radicle-node/src/lib.rs index 2764840f..47f95c3b 100644 --- a/radicle-node/src/lib.rs +++ b/radicle-node/src/lib.rs @@ -8,6 +8,8 @@ pub mod service; pub mod sql; #[cfg(any(test, feature = "test"))] pub mod test; +#[cfg(test)] +pub mod tests; pub mod transport; pub mod wire;