Skip to content

Commit

Permalink
Relax type tests for 32-bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed Feb 8, 2023
1 parent adbf7a1 commit 72c1d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testArrayStats.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

A = [1:10; fill(NaN,10)]
B = [fill(NaN,10); 11:20]
@test countnans(A) === countnotnans(A) === 10
@test countnans(A) === countnotnans(A) == 10
@test A[nanmask(A)] == 1:10
@test nanadd(A,B) == 1:20
@test nanadd!(A,B) == 1:20
Expand Down

2 comments on commit 72c1d96

@brenhinkeller
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Add and test simple nanargmin and nanargmax

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/77252

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.24 -m "<description of version>" 72c1d961a8252185d77816d8dda3b78a4a7c8e87
git push origin v0.6.24

Please sign in to comment.