From 586823aa8acee0e2237612fb12301eb4eb19e500 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 6 Apr 2020 20:34:04 -0400 Subject: [PATCH] first test case failing --- src/parser/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))); } }