Skip to content

Commit 7c691f5

Browse files
committed
Fix test names
1 parent 8c7ccdc commit 7c691f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/hir_ty/src/diagnostics.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ fn foo() { break; }
671671
}
672672

673673
#[test]
674-
fn replace_filter_next_with_find_map() {
674+
fn replace_filter_map_next_with_find_map() {
675675
check_diagnostics(
676676
r#"
677677
fn foo() {
@@ -683,7 +683,7 @@ fn foo() { break; }
683683
}
684684

685685
#[test]
686-
fn replace_filter_next_with_find_map_no_diagnostic_without_next() {
686+
fn replace_filter_map_next_with_find_map_no_diagnostic_without_next() {
687687
check_diagnostics(
688688
r#"
689689
fn foo() {
@@ -697,7 +697,7 @@ fn foo() { break; }
697697
}
698698

699699
#[test]
700-
fn replace_filter_next_with_find_map_no_diagnostic_with_intervening_methods() {
700+
fn replace_filter_map_next_with_find_map_no_diagnostic_with_intervening_methods() {
701701
check_diagnostics(
702702
r#"
703703
fn foo() {
@@ -712,7 +712,7 @@ fn foo() { break; }
712712
}
713713

714714
#[test]
715-
fn replace_filter_next_with_find_map_no_diagnostic_if_not_in_chain() {
715+
fn replace_filter_map_next_with_find_map_no_diagnostic_if_not_in_chain() {
716716
check_diagnostics(
717717
r#"
718718
fn foo() {

0 commit comments

Comments
 (0)