From 7cfca8f721b47a817060d02db1a977d6e4c19bcc Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Thu, 11 Feb 2016 23:02:35 -0800 Subject: [PATCH] Singular module names --- tarpc/src/macros.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tarpc/src/macros.rs b/tarpc/src/macros.rs index 3bb22f6..6f62da1 100644 --- a/tarpc/src/macros.rs +++ b/tarpc/src/macros.rs @@ -321,7 +321,7 @@ macro_rules! service_inner { #[cfg(test)] #[allow(dead_code)] // because we're testing that the macro expansion compiles -mod syntax_tests { +mod syntax_test { // Tests a service definition with a fn that takes no args mod qux { service! { @@ -348,7 +348,7 @@ mod syntax_tests { } #[cfg(test)] -mod functional_tests { +mod functional_test { extern crate env_logger; use std::time::Duration;