mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
correct wrong test case
This commit is contained in:
parent
797ba64003
commit
c87dcd1205
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue