fix(quiz2): typo in assert_eq right side

This commit is contained in:
metmirr 2022-07-21 12:20:23 +02:00
parent fb7dac75a7
commit bdfc02142b

View File

@ -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");
}
}