We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ac2c54 commit 12b7711Copy full SHA for 12b7711
test/fillmap.jl
@@ -6,7 +6,7 @@ using LinearMaps, LinearAlgebra, Test
6
for λ in (true, false, 3, μ, μ + 2im)
7
L = LinearMap(λ, (M, N))
8
@test L == LinearMap(λ, M, N)
9
- @test occursin("$M×$N LinearMaps.FillMap{$(typeof(λ))}", sprint((t, s) -> show(t, "text/plain", s), L))
+ @test occursin("$M×$N LinearMaps.FillMap{$(typeof(λ))} with fill value: $λ", sprint((t, s) -> show(t, "text/plain", s), L))
10
@test LinearMaps.MulStyle(L) === LinearMaps.FiveArg()
11
A = fill(λ, (M, N))
12
x = rand(typeof(λ) <: Real ? Float64 : ComplexF64, 3)
0 commit comments