Rustfmt for 1.38.

A minor change in the recent stable release.
This commit is contained in:
Eric Huss 2019-09-26 09:54:12 -07:00
parent b4bb44292d
commit b88839cc25
1 changed files with 2 additions and 8 deletions

View File

@ -448,18 +448,12 @@ more text with spaces
#[test]
fn it_converts_single_quotes() {
assert_eq!(
convert_quotes_to_curly("'one', 'two'"),
"one, two"
);
assert_eq!(convert_quotes_to_curly("'one', 'two'"), "one, two");
}
#[test]
fn it_converts_double_quotes() {
assert_eq!(
convert_quotes_to_curly(r#""one", "two""#),
"“one”, “two”"
);
assert_eq!(convert_quotes_to_curly(r#""one", "two""#), "“one”, “two”");
}
#[test]