Skip to content

Commit 12b7711

Browse files
committed
improve coverage
1 parent 3ac2c54 commit 12b7711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fillmap.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using LinearMaps, LinearAlgebra, Test
66
for λ in (true, false, 3, μ, μ + 2im)
77
L = LinearMap(λ, (M, N))
88
@test L == LinearMap(λ, M, N)
9-
@test occursin("$M×$N LinearMaps.FillMap{$(typeof(λ))}", sprint((t, s) -> show(t, "text/plain", s), L))
9+
@test occursin("$M×$N LinearMaps.FillMap{$(typeof(λ))} with fill value: ", sprint((t, s) -> show(t, "text/plain", s), L))
1010
@test LinearMaps.MulStyle(L) === LinearMaps.FiveArg()
1111
A = fill(λ, (M, N))
1212
x = rand(typeof(λ) <: Real ? Float64 : ComplexF64, 3)

0 commit comments

Comments
 (0)