Skip to content

Commit 220d27d

Browse files
committed
improve test coverage
1 parent fae59c0 commit 220d27d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/specialty.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ using ImageFiltering: IdentityUnitRange
150150
z z z z edgecoef*c]
151151
end
152152
end
153-
# The doctests seem adequate for laplacian2d
153+
@test Kernel.laplacian2d(0.5) == [ 1/3 1/3 1/3;
154+
1/3 -8/3 1/3;
155+
1/3 1/3 1/3]
154156
end
155157

156158
@testset "box" begin

0 commit comments

Comments
 (0)