From bdfc02142b24919c8f41cc0cc7d821cb10279012 Mon Sep 17 00:00:00 2001 From: metmirr Date: Thu, 21 Jul 2022 12:20:23 +0200 Subject: [PATCH] fix(quiz2): typo in assert_eq right side --- exercises/quiz2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index f7437fd2..edc42304 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"); } }