Skip to content

Commit d98be54

Browse files
revert test changes
1 parent 7115db9 commit d98be54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/layers/conv.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ end
194194
@test fun(rand(2,3,4,5), false).bias isa Flux.Zeros
195195
if fun == Conv
196196
@test fun(rand(2,3,4,5,6), rand(6)).bias isa Vector{Float64}
197-
@test fun(rand(2,3,4,5,6), 1:6).bias isa Vector{Float64}
197+
@test_skip fun(rand(2,3,4,5,6), 1:6).bias isa Vector{Float64}
198198
elseif fun == DepthwiseConv
199199
@test fun(rand(2,3,4,5,6), rand(30)).bias isa Vector{Float64}
200200
end

test/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ end
342342
testdense(m, bt) = @testset "Check layer $i" for (i, (l1, l2)) in enumerate(zip(m, dm(bt)))
343343
@test l1.W == l2.W
344344
@test l1.b == l2.b
345-
@test typeof(l1.b) === typeof(l2.b)
345+
@test_skip typeof(l1.b) === typeof(l2.b)
346346
end
347347

348348
@testset "loadparams!" begin

0 commit comments

Comments
 (0)