diff --git a/benches/benchs.rs b/benches/benchs.rs index f573002..cab2ee0 100644 --- a/benches/benchs.rs +++ b/benches/benchs.rs @@ -1,5 +1,4 @@ #![feature(test)] -#![feature(bench_black_box)] #![cfg(not(tarpaulin_include))] extern crate rand; diff --git a/tests/integration.rs b/tests/integration.rs index 43f8e81..6748fe3 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1551,6 +1551,7 @@ fn test_hashmap_context_clone_debug() { .unwrap(); context.set_value("variable_five".into(), 5.into()).unwrap(); let context = context; + #[allow(clippy::redundant_clone)] let cloned_context = context.clone(); assert_eq!(format!("{:?}", &context), format!("{:?}", &cloned_context));