From 06323fedadb2dfeb73c30db6b342475df195b44e Mon Sep 17 00:00:00 2001 From: yvf Date: Wed, 27 Dec 2023 15:52:34 -0500 Subject: [PATCH] Fix exercise bug in quiz2.rs There's nowhere for "bar" to come from, as shown by the next line. --- exercises/quiz2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index 29925caf..264b754d 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[2], "foofoo"); assert_eq!(output[3], "barbarbarbarbarbar"); } }