From f501cd41beb61ff13dae04f1b81cf1c02a7ea341 Mon Sep 17 00:00:00 2001 From: Chris Cooper Date: Sun, 4 Feb 2024 21:18:33 -0800 Subject: [PATCH] Change the last 2 assert statements so they match the commands above on lines 56 and 57. --- exercises/quiz2.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index 29925caf..6f8ceb31 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -58,7 +58,7 @@ mod tests { ]); assert_eq!(output[0], "HELLO"); assert_eq!(output[1], "all roads lead to rome!"); - assert_eq!(output[2], "foobar"); - assert_eq!(output[3], "barbarbarbarbarbar"); + assert_eq!(output[2], "foo"); + assert_eq!(output[3], "barbarbarbarbar"); } }