Commit 01ef46e
committed
Ignore assertions_on_result_states clippy lint
error: called `assert!` with `Result::is_err`
--> tests/regression/issue795.rs:53:5
|
53 | assert!(serde_json::from_str::<Enum>(s).is_err());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `serde_json::from_str::<Enum>(s).unwrap_err()`
|
= note: `-D clippy::assertions-on-result-states` implied by `-D clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/regression/issue795.rs:56:5
|
56 | assert!(serde_json::from_value::<Enum>(j).is_err());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `serde_json::from_value::<Enum>(j).unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/stream.rs:179:9
|
179 | assert!(stream.next().unwrap().is_err());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `stream.next().unwrap().unwrap_err()`
|
= note: `-D clippy::assertions-on-result-states` implied by `-D clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:940:5
|
940 | assert!(v.is_err());
| ^^^^^^^^^^^^^^^^^^^ help: replace with: `v.unwrap_err()`
|
= note: `-D clippy::assertions-on-result-states` implied by `-D clippy::all`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:1735:5
|
1735 | assert!(res.is_err());
| ^^^^^^^^^^^^^^^^^^^^^ help: replace with: `res.unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:1738:5
|
1738 | assert!(res.is_err());
| ^^^^^^^^^^^^^^^^^^^^^ help: replace with: `res.unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:1741:5
|
1741 | assert!(res.is_err());
| ^^^^^^^^^^^^^^^^^^^^^ help: replace with: `res.unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:1930:5
|
1930 | assert!(serde_json::to_value(&map).is_err());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `serde_json::to_value(&map).unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states
error: called `assert!` with `Result::is_err`
--> tests/test.rs:2005:5
|
2005 | assert!(from_str::<E>(r#" "V"0 "#).is_err());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `from_str::<E>(r#" "V"0 "#).unwrap_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_result_states1 parent aac479a commit 01ef46e
3 files changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
1 | 3 | | |
2 | 4 | | |
3 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
3 | 4 | | |
4 | 5 | | |
5 | 6 | | |
| |||
0 commit comments