We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f888e8 commit f3b2debCopy full SHA for f3b2deb
src/parser.rs
@@ -694,7 +694,7 @@ mod test {
694
});
695
assert_eq!(parser.peek().unwrap().to_string(), "0");
696
assert_eq!(parser.peek_n(0).unwrap().to_string(), "0");
697
- assert_eq!(parser.peek_n(1).unwrap().to_string(), "{}");
+ assert_eq!(parser.peek_n(1).unwrap().to_string().replace(' ', ""), "{}");
698
assert_eq!(parser.peek_n(2).unwrap().to_string(), "2");
699
700
assert_eq!(parser.peek_literal().unwrap().to_string(), "0");
0 commit comments