Skip to content

Commit b827648

Browse files
committed
Fix extract_variable test
1 parent 1b5bc83 commit b827648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ide-assists/src/handlers/extract_variable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ fn foo() {
287287
extract_variable,
288288
r"
289289
fn foo() {
290-
$0{ let x = 0; x }$0
290+
$0{ let x = 0; x }$0;
291291
something_else();
292292
}",
293293
r"

0 commit comments

Comments
 (0)