From f99658d7c7522a76b4fb7ff0d09b53183c136e79 Mon Sep 17 00:00:00 2001 From: jooert Date: Wed, 29 Apr 2015 10:36:43 +0200 Subject: [PATCH] Adapt benchmark tests to unit test guidelines Since #24783, the style guidelines recommend that unit tests should live in a submodule `tests` rather than `test` to not clash with the possible use of libtest. This is especially important for benchmark tests as they require libtest. Fixes #24923. --- src/doc/trpl/benchmark-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/benchmark-tests.md b/src/doc/trpl/benchmark-tests.md index 890a2f8ae7d..88796537593 100644 --- a/src/doc/trpl/benchmark-tests.md +++ b/src/doc/trpl/benchmark-tests.md @@ -13,7 +13,7 @@ pub fn add_two(a: i32) -> i32 { } #[cfg(test)] -mod test { +mod tests { use super::*; use test::Bencher;