diff --git a/crates/compiler/test_gen/src/gen_num.rs b/crates/compiler/test_gen/src/gen_num.rs index 3ca21777f6..29b597fdc7 100644 --- a/crates/compiler/test_gen/src/gen_num.rs +++ b/crates/compiler/test_gen/src/gen_num.rs @@ -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]