Jelajahi Sumber

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.
Dan Barella 7 tahun lalu
induk
melakukan
3534a89858
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/cast.rs

+ 1 - 1
src/cast.rs

@@ -661,5 +661,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));
 }