From 1349db516542602382d0867c5acea3c972e587c0 Mon Sep 17 00:00:00 2001 From: Dan Barella Date: Sat, 27 Jan 2018 15:55:17 -0500 Subject: [PATCH] Don't use assert_ne! `num` is tested against `rust 1.8.0`, which doesn't include `assert_ne!` -- so we use a plain ol' `assert` instead. --- src/cast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cast.rs b/src/cast.rs index b7f3f67..81c85e7 100644 --- a/src/cast.rs +++ b/src/cast.rs @@ -659,5 +659,5 @@ fn float_to_integer_checks_overflow() { // Specifically make sure we didn't silently let the overflow through // (This line is mostly for humans -- the robots should catch any problem // on the line above). - assert_ne!(source.to_i32(), Some(-2147483648)); + assert!(source.to_i32() != Some(-2147483648)); }