Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Veykril committed Feb 19, 2024
1 parent a492d9d commit 1e448f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ fn test() {

#[test]
fn remove_unnecessary_else_for_return3() {
check_diagnostics_with_needless_return_disabled(
check_diagnostics_with_disabled(
r#"
fn test(a: bool) -> i32 {
if a {
Expand All @@ -190,6 +190,7 @@ fn test(a: bool) -> i32 {
}
}
"#,
&["needless_return", "E0425"],
);
check_fix(
r#"
Expand Down Expand Up @@ -473,7 +474,7 @@ fn test() {

#[test]
fn no_diagnostic_if_not_expr_stmt() {
check_diagnostics_with_needless_return_disabled(
check_diagnostics_with_disabled(
r#"
fn test1() {
let _x = if a {
Expand All @@ -495,13 +496,15 @@ fn test2() {
};
}
"#,
&["needless_return", "E0425"],
);
check_diagnostics(
check_diagnostics_with_disabled(
r#"
fn test3() -> u8 {
foo(if a { return 1 } else { 0 })
}
"#,
&["E0425"],
);
}
}
2 changes: 1 addition & 1 deletion crates/ide-diagnostics/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ pub(crate) fn check_diagnostics(ra_fixture: &str) {
#[track_caller]
pub(crate) fn check_diagnostics_with_disabled(ra_fixture: &str, disabled: &[&str]) {
let mut config = DiagnosticsConfig::test_sample();
config.disabled.extend(disabled.into_iter().map(|&s| s.to_owned()));
config.disabled.extend(disabled.iter().map(|&s| s.to_owned()));
check_diagnostics_with_config(config, ra_fixture)
}

Expand Down

0 comments on commit 1e448f8

Please sign in to comment.