Skip to content

Commit 01ef46e

Browse files
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_states
1 parent aac479a commit 01ef46e

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/regression/issue795.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(clippy::assertions_on_result_states)]
2+
13
use serde::de::{
24
Deserialize, Deserializer, EnumAccess, IgnoredAny, MapAccess, VariantAccess, Visitor,
35
};

tests/stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![cfg(not(feature = "preserve_order"))]
2+
#![allow(clippy::assertions_on_result_states)]
23

34
use serde_json::{json, Deserializer, Value};
45

tests/test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![cfg(not(feature = "preserve_order"))]
22
#![allow(
3+
clippy::assertions_on_result_states,
34
clippy::cast_precision_loss,
45
clippy::derive_partial_eq_without_eq,
56
clippy::excessive_precision,

0 commit comments

Comments
 (0)