first test case failing

This commit is contained in:
Tom Alexander
2020-04-06 20:34:04 -04:00
parent b3120d2e52
commit 586823aa8a

View File

@@ -610,6 +610,6 @@ mod tests {
#[test] #[test]
fn test_temp_string() { fn test_temp_string() {
assert_eq!(temp_string(""), Ok(("", ""))); assert_eq!(temp_string("foo\"bar"), Ok(("", "foo\"bar")));
} }
} }