1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-16 14:17:34 +02:00

Rename test module into tests in smart pointer exercise (#1585)

If I'm not mistaken, the naming convention for modules containing only
tests is to call them `tests` (rather than `test`).
This commit is contained in:
Martin Huschenbett
2023-12-13 18:33:31 +01:00
committed by GitHub
parent 9563f055e2
commit ce081b12f9

View File

@ -85,7 +85,7 @@ fn main() {
// ANCHOR: tests
#[cfg(test)]
mod test {
mod tests {
use super::*;
#[test]