Skip to content

Commit 2f98c8b

Browse files
committed
Remove explicit tests
1 parent eb5537c commit 2f98c8b

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

test/bidiag.jl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,12 +1192,4 @@ end
11921192
@test_throws msg ldiv!(C, B, zeros(2,1))
11931193
end
11941194

1195-
@testset "1-row mul" begin
1196-
B = Bidiagonal(2:2, 1:0, :U)
1197-
for v in ([3], fill(3, 1, 4))
1198-
@test mul!(zero(v), B, v) == 2v
1199-
@test mul!(2v, B, v, 2, 2) == 8v
1200-
end
1201-
end
1202-
12031195
end # module TestBidiagonal

test/tridiag.jl

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,14 +1184,4 @@ end
11841184
@test convert(SymTridiagonal, S) == S
11851185
end
11861186

1187-
@testset "1-row mul" begin
1188-
for T in (Tridiagonal(1:0, 2:2, 1:0),
1189-
SymTridiagonal(2:2, 1:0))
1190-
for v in ([3], fill(3, 1, 4))
1191-
@test mul!(zero(v), T, v) == 2v
1192-
@test mul!(2v, T, v, 2, 2) == 8v
1193-
end
1194-
end
1195-
end
1196-
11971187
end # module TestTridiagonal

0 commit comments

Comments
 (0)