File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments