Skip to content

Commit f3c3776

Browse files
committed
Fix
1 parent 59f4d42 commit f3c3776

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/structured.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ end;
5151
for (mb, nb) in [(10, 20), (20, 10)], lb in 0:3, ub in 0:3, _ in 1:10
5252
rows = rand(1:5, mb)
5353
cols = rand(1:5, nb)
54-
A = BlockBandedMatrix{Float64}(rand(sum(rows), sum(cols)), rows, cols, (l, u))
54+
A = BlockBandedMatrix{Float64}(rand(sum(rows), sum(cols)), rows, cols, (lb, ub))
5555
test_structured_coloring_decompression(A)
5656
end
5757
end;

0 commit comments

Comments
 (0)