File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
crates/ra_assists/src/handlers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments