We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ba83c8 commit 0ed974eCopy full SHA for 0ed974e
test/distribution_wrappers.jl
@@ -1,5 +1,6 @@
1
using DynamicPPL
2
using Distributions
3
+using Bijectors
4
5
@testset "distribution_wrappers.jl" begin
6
d = Normal()
@@ -11,6 +12,6 @@ using Distributions
11
12
# Actual tests
13
@test minimum(nd) == -Inf
14
@test maximum(nd) == Inf
- @test logpdf(ndf, 15.0) == 0
15
- @test logpdf_with_trans(nd, 0)
+ @test logpdf(nd, 15.0) == 0
16
+ @test Bijectors.logpdf_with_trans(nd, 0)
17
end
0 commit comments