diff options
author | Matthew Hall <[email protected]> | 2020-03-28 21:24:26 +0000 |
---|---|---|
committer | Matthew Hall <[email protected]> | 2020-03-28 21:24:26 +0000 |
commit | 77bb9a56f10d609a85fc4a420f5cc61fa84fae2a (patch) | |
tree | cc07ad110f5005c576973d73150ae432fd6ccef3 /crates/ra_assists/src | |
parent | ecc2615ba2da0e083a8dbfbf203d1fd7fe0bcaaf (diff) |
Remove "TODO" in comment in test
Diffstat (limited to 'crates/ra_assists/src')
-rw-r--r-- | crates/ra_assists/src/handlers/fill_match_arms.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_assists/src/handlers/fill_match_arms.rs b/crates/ra_assists/src/handlers/fill_match_arms.rs index c45981c5c..5f279d25a 100644 --- a/crates/ra_assists/src/handlers/fill_match_arms.rs +++ b/crates/ra_assists/src/handlers/fill_match_arms.rs | |||
@@ -665,7 +665,7 @@ mod tests { | |||
665 | } | 665 | } |
666 | fn foo(a: A) { | 666 | fn foo(a: A) { |
667 | match a { | 667 | match a { |
668 | // TODO: Fill this in<|> | 668 | // foo bar baz<|> |
669 | A::One => {} | 669 | A::One => {} |
670 | // This is where the rest should be | 670 | // This is where the rest should be |
671 | } | 671 | } |
@@ -678,7 +678,7 @@ mod tests { | |||
678 | } | 678 | } |
679 | fn foo(a: A) { | 679 | fn foo(a: A) { |
680 | match <|>a { | 680 | match <|>a { |
681 | // TODO: Fill this in | 681 | // foo bar baz |
682 | A::One => {} | 682 | A::One => {} |
683 | // This is where the rest should be | 683 | // This is where the rest should be |
684 | A::Two => {} | 684 | A::Two => {} |
@@ -699,7 +699,7 @@ mod tests { | |||
699 | } | 699 | } |
700 | fn foo(a: A) { | 700 | fn foo(a: A) { |
701 | match a { | 701 | match a { |
702 | // TODO: Fill this in<|> | 702 | // foo bar baz<|> |
703 | } | 703 | } |
704 | } | 704 | } |
705 | "#, | 705 | "#, |
@@ -710,7 +710,7 @@ mod tests { | |||
710 | } | 710 | } |
711 | fn foo(a: A) { | 711 | fn foo(a: A) { |
712 | match <|>a { | 712 | match <|>a { |
713 | // TODO: Fill this in | 713 | // foo bar baz |
714 | A::One => {} | 714 | A::One => {} |
715 | A::Two => {} | 715 | A::Two => {} |
716 | } | 716 | } |