Skip to content

Commit

Permalink
test: remove redundant test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ChobobDev committed Nov 5, 2022
1 parent 9e411bb commit c31379a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test-suite/src/function/div_mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ test_case!(div_mod, async move {
INSERT INTO
MixDiv (dividend, divisor)
VALUES
(12, 3.0), (12, 34.0), (12, -5.2),
(12, 3.0), (12, 34.0),
(12, NULL), (NULL, 34.0), (NULL, NULL)
"#,
Ok(Payload::Insert(6)),
Ok(Payload::Insert(5)),
),
(
"
Expand All @@ -131,7 +131,6 @@ test_case!(div_mod, async move {
"DIV(dividend, divisor)" | "MOD(dividend, divisor)";
I64(eval_div(12_f64, 3.0)) F64(eval_mod(12_f64, 3.0));
I64(eval_div(12_f64, 34.0)) F64(eval_mod(12_f64, 34.0));
I64(eval_div(12_f64, -5.2)) F64(eval_mod(12_f64, -5.2));
Null Null;
Null Null;
Null Null
Expand Down

0 comments on commit c31379a

Please sign in to comment.