Skip to content

Commit

Permalink
fixed @test to @test_nothrow in test_sampler.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavnatarajan committed Oct 15, 2022
1 parent 8780057 commit 8f3b271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_sampler.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
data = MCMCData(pnts)
@test_nothrow global result = runsampler(data; verbose = false) # test defaults
data = MCMCData(distM)
@test show(data) # test pretty printing
@test display(data) # test multiline pretty printing
@test_nothrow show(data) # test pretty printing
@test_nothrow display(data) # test multiline pretty printing
@test_nothrow global result = runsampler(data; verbose = false) # test defaults
options = MCMCOptionsList(numMH = 0)
@test_nothrow show(options) # test pretty printing
Expand Down

2 comments on commit 8f3b271

@abhinavnatarajan
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
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/70301

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.2.1 -m "<description of version>" 8f3b271ac391c58e4cb8d6f21cbd6a13820bc7ff
git push origin v0.2.1

Please sign in to comment.