Remove "TODO" in comment in test

This commit is contained in:
Matthew Hall 2020-03-28 21:24:26 +00:00
parent ecc2615ba2
commit 77bb9a56f1

View File

@ -665,7 +665,7 @@ mod tests {
} }
fn foo(a: A) { fn foo(a: A) {
match a { match a {
// TODO: Fill this in<|> // foo bar baz<|>
A::One => {} A::One => {}
// This is where the rest should be // This is where the rest should be
} }
@ -678,7 +678,7 @@ mod tests {
} }
fn foo(a: A) { fn foo(a: A) {
match <|>a { match <|>a {
// TODO: Fill this in // foo bar baz
A::One => {} A::One => {}
// This is where the rest should be // This is where the rest should be
A::Two => {} A::Two => {}
@ -699,7 +699,7 @@ mod tests {
} }
fn foo(a: A) { fn foo(a: A) {
match a { match a {
// TODO: Fill this in<|> // foo bar baz<|>
} }
} }
"#, "#,
@ -710,7 +710,7 @@ mod tests {
} }
fn foo(a: A) { fn foo(a: A) {
match <|>a { match <|>a {
// TODO: Fill this in // foo bar baz
A::One => {} A::One => {}
A::Two => {} A::Two => {}
} }