Rename test modules to "tests" for consistency.

The majority of the test modules were already named "tests", and that's
what the example in the Rust book uses, so switch to that for all test
modules, for consistency.
This commit is contained in:
Dan Gohman
2018-09-28 14:50:01 -07:00
parent 52aa1d292a
commit b94cf6c65b
11 changed files with 11 additions and 12 deletions

View File

@@ -396,7 +396,7 @@ impl VirtRegs {
}
#[cfg(test)]
mod test {
mod tests {
use super::*;
use entity::EntityRef;
use ir::Value;