Fix exercise bug in quiz2.rs

There's nowhere for "bar" to come from, as shown by the next line.
This commit is contained in:
yvf 2023-12-27 15:52:34 -05:00 committed by GitHub
parent 88b583f2bb
commit 06323fedad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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