Skip to content

Commit 28cfeeb

Browse files
authored
Change colstart test to colrange (#190)
1 parent a004caa commit 28cfeeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_bandedblockbanded.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ import ArrayLayouts: RangeCumsum
466466

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

0 commit comments

Comments
 (0)