diff --git a/src/parser/parser.rs b/src/parser/parser.rs index 839d3f3..175d9ba 100644 --- a/src/parser/parser.rs +++ b/src/parser/parser.rs @@ -610,6 +610,6 @@ mod tests { #[test] fn test_temp_string() { - assert_eq!(temp_string(""), Ok(("", ""))); + assert_eq!(temp_string("foo\"bar"), Ok(("", "foo\"bar"))); } }