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 b95699e commit 88bf2cbCopy full SHA for 88bf2cb
test/runtests.jl
@@ -10,20 +10,19 @@ Aqua.test_all(MeasureBase; ambiguities=false, unbound_args=false)
10
11
d = ∫exp(x -> -x^2, Lebesgue(ℝ))
12
13
-@static if VERSION ≥ 1.6
+if VERSION ≥ v"1.6"
14
+ @eval using JETTest
15
- using JETTest
16
+ @eval begin
17
+ @test_nodispatch density(Lebesgue(ℝ), 0.3)
18
- @test_nodispatch density(Lebesgue(ℝ), 0.3)
19
+ @test_nodispatch density(Dirac(0), 0.3)
20
+ @test_nodispatch density(Dirac(0), 0)
21
+
22
+ @test_nodispatch density(d, 3)
23
- @test_nodispatch density(Dirac(0), 0.3)
- @test_nodispatch density(Dirac(0), 0)
-
24
- @test_nodispatch density(d, 3)
25
26
- @test_nodispatch basemeasure(d)
+ @test_nodispatch basemeasure(d)
+ end
27
end
28
29
# function draw2(μ)
0 commit comments