From 27eea90bc394151faffbc23229b6eb82d98b7caa Mon Sep 17 00:00:00 2001 From: Brendan Hansknecht Date: Fri, 8 Dec 2023 14:43:57 -0800 Subject: [PATCH] correct wrong test case --- crates/compiler/test_gen/src/gen_num.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]