mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
correct wrong test case
This commit is contained in:
parent
2d0ba0a792
commit
27eea90bc3
1 changed files with 1 additions and 1 deletions
|
@ -1813,7 +1813,7 @@ fn ceiling() {
|
||||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||||
fn floor() {
|
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", -1, i64);
|
assert_evals_to!("Num.floor -1.9f64", -2, i64);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue