Skip to content

Commit bf9e51a

Browse files
committed
update tests for LazyArrays v0.19.3
1 parent c5a6add commit bf9e51a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunOrthogonalPolynomials"
22
uuid = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
3-
version = "0.3.6"
3+
version = "0.3.7"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

test/ODETest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ import ApproxFunBase: Multiplication, testraggedbelowoperator, testbandedoperato
228228

229229
A = [B; L]
230230
rs = rangespace(A)
231-
@test ApproxFunBase.blocklengths(rs) isa Vcat
231+
# @test ApproxFunBase.blocklengths(rs) isa Vcat
232232

233233
u = [B; L] \ [ [0.,0.], [1.,1.], zeros(6)..., exp(x)]
234234
@test u(0.5) -0.4024723414410859 # Empirical

test/OperatorTest.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ import ApproxFunOrthogonalPolynomials: JacobiZ
203203

204204
@testset "InterlaceOperator" begin
205205
A = InterlaceOperator(Diagonal([Matrix(I,2,2),Derivative(Chebyshev())]))
206-
206+
@test blockbandwidths(A) == (0,1)
207+
@test subblockbandwidths(A) == (2,2)
207208
@test A[Block(1):Block(2), Block(1):Block(2)] isa BlockBandedMatrix
208209
@test Matrix(view(A, Block(1), Block(1))) == A[1:3,1:3]
209210
@test Matrix(view(A, Block(1):Block(2), Block(1):Block(2))) == A[1:4,1:4]

0 commit comments

Comments
 (0)