Skip to content

Commit

Permalink
Change colstart test to colrange (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Mar 18, 2024
1 parent a004caa commit 28cfeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_bandedblockbanded.jl
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ import ArrayLayouts: RangeCumsum

@testset "non-standard blocks" begin
A = BandedBlockBandedMatrix{Float64}(undef, Int[], 1:5,(-1,1), (-1,1))
@test BlockBandedMatrices.colstart(A,1) == 1
@test isempty(BlockBandedMatrices.colrange(A,1))
A = BandedBlockBandedMatrix{Float64}(undef, 1:2, 1:5,(-1,1), (-1,1))
A.data .= randn.()
V = view(A, Block(2,3))
Expand Down

0 comments on commit 28cfeeb

Please sign in to comment.