remove bad copy paste

This commit is contained in:
John Murray 2023-11-20 23:41:08 -05:00
parent abc92ded95
commit 14478c888d
No known key found for this signature in database

View File

@ -1195,22 +1195,6 @@ fn gen_div_checked_by_zero_i64() {
);
}
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn gen_div_by_zero_i64() {
assert_evals_to!(
indoc!(
r#"
when Num.divTruncChecked 1000 0 is
Err DivByZero -> 99
_ -> -24
"#
),
99,
i64
);
}
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
fn gen_rem_i64() {