Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/tests/generated.rs')
-rw-r--r--crates/ide-assists/src/tests/generated.rs14
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/ide-assists/src/tests/generated.rs b/crates/ide-assists/src/tests/generated.rs
index 79958a2292..d8b3b32a1a 100644
--- a/crates/ide-assists/src/tests/generated.rs
+++ b/crates/ide-assists/src/tests/generated.rs
@@ -2056,13 +2056,15 @@ fn doctest_merge_nested_if() {
check_doc_test(
"merge_nested_if",
r#####"
- fn main() {
- i$0f x == 3 { if y == 4 { 1 } }
- }"#####,
+fn main() {
+ i$0f x == 3 { if y == 4 { 1 } }
+}
+"#####,
r#####"
- fn main() {
- if x == 3 && y == 4 { 1 }
- }"#####,
+fn main() {
+ if x == 3 && y == 4 { 1 }
+}
+"#####,
)
}