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 <slackcoder@server.ky>
This commit is contained in:
Slack Coder 2022-11-11 09:19:35 -05:00
parent 72ec0775c7
commit 507bc2237a
1 changed files with 2 additions and 0 deletions

View File

@ -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;