We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad4974 commit 2aa764dCopy full SHA for 2aa764d
test/runtests.jl
@@ -280,8 +280,8 @@ end
280
281
M = ApplyMatrix{Float64}(*,A,B)
282
M̃ = M[1:10,1:10]
283
- @test_broken M̃ isa BandedMatrix
284
- @test_broken bandwidths(M̃) == (2,0)
+ @test M̃ isa BandedMatrix
+ @test bandwidths(M̃) == (2,0)
285
286
@test A*B isa MulArray
287
@@ -314,7 +314,7 @@ end
314
L = D*W*S
315
Δ = L'L
316
@test Δ isa MulMatrix
317
- @test_broken Δ[1:3,1:3] isa BandedMatrix
+ @test Δ[1:3,1:3] isa BandedMatrix
318
@test bandwidths(Δ) == (0,0)
319
320
L = D*W*S[:,1:N]
0 commit comments