From b935fac9576cf333e22b82e40da8c4d73c8e547d Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Fri, 25 Feb 2022 13:06:11 +0900 Subject: Fix 1.60 lints --- helix-tui/src/widgets/reflow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'helix-tui/src') diff --git a/helix-tui/src/widgets/reflow.rs b/helix-tui/src/widgets/reflow.rs index 33e52bb4..38071940 100644 --- a/helix-tui/src/widgets/reflow.rs +++ b/helix-tui/src/widgets/reflow.rs @@ -490,7 +490,7 @@ mod test { assert_eq!(word_wrapper, vec!["AAAAAAAAAAAAAAA", "AAAA\u{00a0}AAA",]); // Ensure that if the character was a regular space, it would be wrapped differently. - let text_space = text.replace("\u{00a0}", " "); + let text_space = text.replace('\u{00a0}', " "); let (word_wrapper_space, _) = run_composer(Composer::WordWrapper { trim: true }, &text_space, width); assert_eq!(word_wrapper_space, vec!["AAAAAAAAAAAAAAA AAAA", "AAA",]); -- cgit v1.2.3-70-g09d2