From 5153df2decac15f908c106a65793387140f42a06 Mon Sep 17 00:00:00 2001 From: dhruv Date: Sun, 16 Oct 2022 01:34:53 +0530 Subject: [PATCH] fix: test case with wrong expectation --- exercises/quiz2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index 606d3c70..89008299 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -56,7 +56,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"); } }