From 87327eb72aa64256b2312a71f3a7e850b205b91b Mon Sep 17 00:00:00 2001 From: Michael Mc Donnell Date: Thu, 27 Feb 2020 06:47:44 -0800 Subject: [PATCH] Remove assert that had been replaced by assert_ne --- src/libcore/tests/hash/sip.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcore/tests/hash/sip.rs b/src/libcore/tests/hash/sip.rs index 12aa20a0bbd..5c0e114e93c 100644 --- a/src/libcore/tests/hash/sip.rs +++ b/src/libcore/tests/hash/sip.rs @@ -298,7 +298,6 @@ fn test_hash_no_concat_alias() { let t = ("aabb", ""); let u = ("a", "abb"); - assert!(s != t && t != u); assert_ne!(s, t); assert_ne!(t, u); assert_ne!(hash(&s), hash(&t));