From 77bb9a56f10d609a85fc4a420f5cc61fa84fae2a Mon Sep 17 00:00:00 2001 From: Matthew Hall Date: Sat, 28 Mar 2020 21:24:26 +0000 Subject: Remove "TODO" in comment in test --- crates/ra_assists/src/handlers/fill_match_arms.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/ra_assists/src/handlers') 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 { } fn foo(a: A) { match a { - // TODO: Fill this in<|> + // foo bar baz<|> A::One => {} // This is where the rest should be } @@ -678,7 +678,7 @@ mod tests { } fn foo(a: A) { match <|>a { - // TODO: Fill this in + // foo bar baz A::One => {} // This is where the rest should be A::Two => {} @@ -699,7 +699,7 @@ mod tests { } fn foo(a: A) { match a { - // TODO: Fill this in<|> + // foo bar baz<|> } } "#, @@ -710,7 +710,7 @@ mod tests { } fn foo(a: A) { match <|>a { - // TODO: Fill this in + // foo bar baz A::One => {} A::Two => {} } -- cgit v1.2.3