Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rvanasa committed Feb 11, 2025
1 parent 84cdb3f commit fd96537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Int.test.mo
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ do {
assert Array.fromIter(Int.rangeWithStep(3, 1, -1)) == [3, 2];
assert Array.fromIter(Int.rangeWithStep(3, 0, -2)) == [3, 1];
assert Array.fromIter(Int.rangeWithStep(3, 1, -2)) == [3];
assert Array.fromIter(Int.rangeWithStep(1, 3, -1)) == [0];
assert Array.fromIter(Int.rangeWithStep(1, 3, -1)) == [];
assert Array.fromIter(Int.rangeWithStep(0, 1, 0)) == [];
assert Array.fromIter(Int.rangeWithStep(1, 0, 0)) == []
}
2 changes: 1 addition & 1 deletion test/Nat.test.mo
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ do {
assert Array.fromIter(Nat.rangeWithStep(3, 1, -1)) == [3, 2];
assert Array.fromIter(Nat.rangeWithStep(3, 0, -2)) == [3, 1];
assert Array.fromIter(Nat.rangeWithStep(3, 1, -2)) == [3];
assert Array.fromIter(Nat.rangeWithStep(1, 3, -1)) == [0];
assert Array.fromIter(Nat.rangeWithStep(1, 3, -1)) == [];
assert Array.fromIter(Nat.rangeWithStep(0, 1, 0)) == [];
assert Array.fromIter(Nat.rangeWithStep(1, 0, 0)) == [];
}

0 comments on commit fd96537

Please sign in to comment.