thiserror/tests
David Tolnay d43b759e3a
Ignore needless_raw_string_hashes pedantic clippy lint in test
warning: unnecessary hashes around raw string literal
       --> tests/test_display.rs:354:12
        |
    354 |     assert(r#"raw brace left {"#, Error::BraceLeft);
        |            ^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
        = note: `-W clippy::needless-raw-string-hashes` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::needless_raw_string_hashes)]`
    help: remove all the hashes around the string literal
        |
    354 -     assert(r#"raw brace left {"#, Error::BraceLeft);
    354 +     assert(r"raw brace left {", Error::BraceLeft);
        |

    warning: unnecessary hashes around raw string literal
       --> tests/test_display.rs:355:12
        |
    355 |     assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2);
        |            ^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
    help: remove all the hashes around the string literal
        |
    355 -     assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2);
    355 +     assert(r"raw brace left 2 \x7B", Error::BraceLeft2);
        |

    warning: unnecessary hashes around raw string literal
       --> tests/test_display.rs:356:12
        |
    356 |     assert(r#"raw brace right }"#, Error::BraceRight);
        |            ^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
    help: remove all the hashes around the string literal
        |
    356 -     assert(r#"raw brace right }"#, Error::BraceRight);
    356 +     assert(r"raw brace right }", Error::BraceRight);
        |

    warning: unnecessary hashes around raw string literal
       --> tests/test_display.rs:357:12
        |
    357 |     assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2);
        |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
    help: remove all the hashes around the string literal
        |
    357 -     assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2);
    357 +     assert(r"raw brace right 2 \x7D", Error::BraceRight2);
        |
2024-02-11 10:27:54 -08:00
..
ui Update ui test suite to nightly-2024-02-08 2024-02-07 21:13:02 -08:00
compiletest.rs Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00
test_backtrace.rs Pull in anyhow's new Error::provide support 2023-08-15 00:00:07 -07:00
test_deprecated.rs Revert "Delete broken #[deprecated] test" 2022-08-30 19:14:00 -07:00
test_display.rs Ignore needless_raw_string_hashes pedantic clippy lint in test 2024-02-11 10:27:54 -08:00
test_error.rs Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00
test_expr.rs Remove option_if_let_else clippy suppression 2023-12-30 14:42:20 -08:00
test_from.rs Ignore extra_unused_type_parameters clippy lint in test 2023-02-10 19:17:59 -08:00
test_generics.rs Ignore uninlined_format_args pedantic clippy lint 2023-09-02 13:14:40 -07:00
test_lints.rs Revert "Ignore buggy nonstandard_macro_braces clippy lint" 2021-09-04 12:41:36 -07:00
test_option.rs Update to nightly's new Error::provide API 2023-08-14 23:15:54 -07:00
test_path.rs Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00
test_source.rs Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00
test_transparent.rs Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00