From 4ad24e4e340eaa2d44e360e10c787a760eeda6b1 Mon Sep 17 00:00:00 2001 From: Rock070 Date: Mon, 8 Jan 2024 23:51:41 +0800 Subject: [PATCH] Fix assert statement in tests1.rs --- exercises/17_tests/tests1.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/17_tests/tests1.rs b/exercises/17_tests/tests1.rs index 810277ac..eab3ba7a 100644 --- a/exercises/17_tests/tests1.rs +++ b/exercises/17_tests/tests1.rs @@ -10,12 +10,10 @@ // Execute `rustlings hint tests1` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE - #[cfg(test)] mod tests { #[test] fn you_can_assert() { - assert!(); + assert!(true); } }