diff --git a/blog/content/edition-2/posts/04-testing/index.md b/blog/content/edition-2/posts/04-testing/index.md index 46f0192b..ad94046c 100644 --- a/blog/content/edition-2/posts/04-testing/index.md +++ b/blog/content/edition-2/posts/04-testing/index.md @@ -555,7 +555,7 @@ The last step is to update our `test_runner` to use the new `Testable` trait: // in src/main.rs #[cfg(test)] -pub fn test_runner(tests: &[&dyn Testable]) { +pub fn test_runner(tests: &[&dyn Testable]) { // new serial_println!("Running {} tests", tests.len()); for test in tests { test.run(); // new