correct wrong test case

This commit is contained in:
Brendan Hansknecht 2023-12-08 14:43:57 -08:00 committed by ptaszor3
parent 2d0ba0a792
commit 27eea90bc3
No known key found for this signature in database
GPG Key ID: 083F32091F5D7CEE

View File

@ -1813,7 +1813,7 @@ fn ceiling() {
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn floor() {
assert_evals_to!("Num.floor 1.9f64", 1, i64);
assert_evals_to!("Num.floor -1.9f64", -1, i64);
assert_evals_to!("Num.floor -1.9f64", -2, i64);
}
#[test]