Skip to content

Commit 77bb9a5

Browse files
committed
Remove "TODO" in comment in test
1 parent ecc2615 commit 77bb9a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/ra_assists/src/handlers/fill_match_arms.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ mod tests {
665665
}
666666
fn foo(a: A) {
667667
match a {
668-
// TODO: Fill this in<|>
668+
// foo bar baz<|>
669669
A::One => {}
670670
// This is where the rest should be
671671
}
@@ -678,7 +678,7 @@ mod tests {
678678
}
679679
fn foo(a: A) {
680680
match <|>a {
681-
// TODO: Fill this in
681+
// foo bar baz
682682
A::One => {}
683683
// This is where the rest should be
684684
A::Two => {}
@@ -699,7 +699,7 @@ mod tests {
699699
}
700700
fn foo(a: A) {
701701
match a {
702-
// TODO: Fill this in<|>
702+
// foo bar baz<|>
703703
}
704704
}
705705
"#,
@@ -710,7 +710,7 @@ mod tests {
710710
}
711711
fn foo(a: A) {
712712
match <|>a {
713-
// TODO: Fill this in
713+
// foo bar baz
714714
A::One => {}
715715
A::Two => {}
716716
}

0 commit comments

Comments
 (0)