From f8aa62200a4d1f7e2d53349ce13b04072cc5b5f4 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 8 Jan 2025 15:50:35 -0600 Subject: [PATCH] refactor(test): Make test filename consistent --- src/macros/mod.rs | 2 +- src/macros/{test.rs => tests.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/macros/{test.rs => tests.rs} (100%) diff --git a/src/macros/mod.rs b/src/macros/mod.rs index 09dc68be..cedb8973 100644 --- a/src/macros/mod.rs +++ b/src/macros/mod.rs @@ -2,4 +2,4 @@ mod dispatch; mod seq; #[cfg(test)] -mod test; +mod tests; diff --git a/src/macros/test.rs b/src/macros/tests.rs similarity index 100% rename from src/macros/test.rs rename to src/macros/tests.rs