Skip to content

Commit e27d89b

Browse files
committed
increase codecov
1 parent af5528c commit e27d89b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1255,10 +1255,12 @@ include("test_block.jl")
12551255
end
12561256
end
12571257

1258-
@testset "Vector * ∞-FillMatrix" begin
1258+
@testset "Vector * ∞ matrix" begin
12591259
a = [1+im,2+im]
12601260
A = a * Ones{Complex{Int}}(1,∞)
12611261
@test A[:,1:5] == a * ones(1,5)
1262+
1263+
a*permutedims(1:∞)
12621264
end
12631265

12641266
include("test_infbanded.jl")

test/test_infbanded.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,9 @@ using LazyArrays: simplifiable
182182
B = PaddedArray(randn(3,3),ℵ₀,ℵ₀)
183183
@test (A*B)[1:10,1:10] A[1:10,1:10] * B[1:10,1:10]
184184
end
185+
186+
@testset "SubArray broadcasting" begin
187+
A = BandedMatrix(2 => 1:∞)
188+
@test exp.(A[1:2:∞,1:2:∞])[1:10,1:10] exp.(A[1:2:20,1:2:20])
189+
end
185190
end

0 commit comments

Comments
 (0)