From b88839cc25a6fd1c782101e94318959e8079bb20 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 26 Sep 2019 09:54:12 -0700 Subject: [PATCH] Rustfmt for 1.38. A minor change in the recent stable release. --- src/utils/mod.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/utils/mod.rs b/src/utils/mod.rs index 36764b35..9542edb3 100644 --- a/src/utils/mod.rs +++ b/src/utils/mod.rs @@ -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]