Normalize strings for bson tests

This commit is contained in:
Patrick Meredith 2019-08-25 11:43:15 -04:00
parent a75c90cc42
commit 376809aa2a

View File

@ -32,7 +32,7 @@ fn open_can_parse_bson_1() {
"open sample.bson | nth 3 | get b | get '$javascript' | echo $it" "open sample.bson | nth 3 | get b | get '$javascript' | echo $it"
); );
assert_eq!(output, "let x = y"); assert_eq!(h::normalize_string(&output), "\"let x = y\"");
} }
#[test] #[test]