fix tests

This commit is contained in:
Nicole Mazzuca 2018-12-17 20:21:21 -08:00
parent e36b62873f
commit de39aea91c

View File

@ -31,8 +31,8 @@ mod tests {
}
#[test]
fn test_mod_euclid() {
assert!((-1 as $T).mod_euclid(MIN) == MAX);
fn test_rem_euclid() {
assert!((-1 as $T).rem_euclid(MIN) == MAX);
}
#[test]