Skip to content

Commit b30a950

Browse files
committed
Update interp.jl
1 parent 9fd648a commit b30a950

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/interp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ k = kde((X,Y))
1313
# Try to evaluate the KDE outside the interpolation domain
1414
# The KDE is allowed to be zero, but it should not be greater than the exact solution
1515
k = kde([0.0], bandwidth=1.0)
16-
@test pdf(k, k.x) k.density
16+
@test pdf.(k, k.x) k.density
1717
@test pdf(k, -10.0) pdf(Normal(), -10.0)
1818
@test pdf(k, +10.0) pdf(Normal(), +10.0)
1919

0 commit comments

Comments
 (0)