]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/or_fun_call.fixed
Rollup merge of #98617 - ChrisDenton:const-unwrap, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / or_fun_call.fixed
index 3208048e0d53c82e87407376138c0d0923db3bef..123aed40251e2a639a63a6b630fc6a084944e02c 100644 (file)
@@ -185,8 +185,7 @@ mod issue8239 {
             .reduce(|mut acc, f| {
                 acc.push_str(&f);
                 acc
-            })
-            .unwrap_or_default();
+            }).unwrap_or_default();
     }
 
     fn more_to_max_suggestion_highest_lines_1() {
@@ -198,8 +197,7 @@ mod issue8239 {
                 let _ = "";
                 acc.push_str(&f);
                 acc
-            })
-            .unwrap_or_default();
+            }).unwrap_or_default();
     }
 
     fn equal_to_max_suggestion_highest_lines() {