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:
parent
72ec0775c7
commit
507bc2237a
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue