fix test I broke

This commit is contained in:
Folkert 2023-02-26 22:32:19 +01:00
parent 44f08f9e47
commit 1f296a5907
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -500,7 +500,7 @@ fn f64_log() {
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn f64_log_checked_one() {
assert_evals_to!("Num.logChecked 1", RocResult::ok(1.0), RocResult<f64, ()>);
assert_evals_to!("Num.logChecked 1", RocResult::ok(0.0), RocResult<f64, ()>);
}
#[test]