Skip to content

Commit 87aa133

Browse files
committed
Restore testsets
1 parent f934300 commit 87aa133

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/triggs.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ using Test
3030

3131
kernel = KernelFactors.IIRGaussian(2.0)
3232
@test_throws DimensionMismatch imfilter([1.0, 2.0], (kernel,))
33-
# end
33+
end
3434

35-
# @testset "commutivity" begin
35+
@testset "commutivity" begin
3636
img = 1:8
3737
k1 = KernelFactors.IIRGaussian(2)
3838
k2 = centered(ones(3)/3)
3939
for border in (Pad(:replicate), Fill(0))
4040
@test imfilter(img, (k1, k2), border) imfilter(img, (k2, k1), border)
4141
end
42-
# end
42+
end
4343

44-
# @testset "images" begin
44+
@testset "images" begin
4545
imgf = zeros(5, 7); imgf[3,4] = 1
4646
imgg = fill(Gray{Float32}(0), 5, 7); imgg[3,4] = 1
4747
imgc = fill(RGB{Float64}(0,0,0), 5, 7); imgc[3,4] = RGB(1,0,0)

0 commit comments

Comments
 (0)