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.
This commit is contained in:
jooert 2015-04-29 10:36:43 +02:00
parent d4cedea80a
commit f99658d7c7

View File

@ -13,7 +13,7 @@ pub fn add_two(a: i32) -> i32 {
}
#[cfg(test)]
mod test {
mod tests {
use super::*;
use test::Bencher;