Skip to content

Commit 4bb5223

Browse files
committed
fix tests
1 parent 981612f commit 4bb5223

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
## [0.24.2] - 2026-01-24
1111
### Fixed
1212
- minor internal optimizations
13+
### Added
14+
- more tests
1315

1416

1517
## [0.24.1] - 2026-01-17

Tests/Module2.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -746,9 +746,9 @@ module Module2 =
746746
testCase "Array.min3IndicesBy returns indices of three smallest" <| fun _ ->
747747
let xs = [|"apple"; "be"; "cat"; "do"; "e"|]
748748
let i1, i2, i3 = Array.min3IndicesBy String.length xs
749-
Expect.equal i1 1 "min3IndicesBy first"
750-
Expect.equal i2 3 "min3IndicesBy second"
751-
Expect.equal i3 4 "min3IndicesBy third"
749+
Expect.equal i1 4 "min3IndicesBy first"
750+
Expect.equal i2 1 "min3IndicesBy second"
751+
Expect.equal i3 3 "min3IndicesBy third"
752752

753753
testCase "Array.min3IndicesBy throws on null array" <| fun _ ->
754754
let xs : string[] = null

0 commit comments

Comments
 (0)