From 8f3b271ac391c58e4cb8d6f21cbd6a13820bc7ff Mon Sep 17 00:00:00 2001 From: Abhinav Date: Sat, 15 Oct 2022 19:22:28 +0530 Subject: [PATCH] fixed @test to @test_nothrow in test_sampler.jl --- test/test_sampler.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_sampler.jl b/test/test_sampler.jl index 076e640..dd11537 100644 --- a/test/test_sampler.jl +++ b/test/test_sampler.jl @@ -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