Skip to content

Commit b804995

Browse files
committed
small update to tests
1 parent 7f40992 commit b804995

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

test/basics/test_svd.jl

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Test
22
using BlockSparseArrays
3-
using BlockSparseArrays: BlockSparseArray, svd, notrunc, truncbelow, truncdim, BlockDiagonal
3+
using BlockSparseArrays: BlockSparseArray, svd, BlockDiagonal
44
using BlockArrays
55
using LinearAlgebra: LinearAlgebra, Diagonal, svdvals
66
using Random
@@ -58,8 +58,8 @@ test_svd(a, usv)
5858

5959
# blocksparse
6060
# -----------
61-
@testset "($m, $n) BlockDiagonal{$T}" for ((m, n), T) in
62-
Iterators.product(blockszs, eltypes)
61+
@testset "($m, $n) BlockSparseMatrix{$T}" for ((m, n), T) in
62+
Iterators.product(blockszs, eltypes)
6363
a = BlockSparseArray{T}(m, n)
6464
for i in LinearAlgebra.diagind(blocks(a))
6565
I = CartesianIndices(blocks(a))[i]
@@ -72,12 +72,4 @@ test_svd(a, usv)
7272
usv = svd(a)
7373
# TODO: `BlockDiagonal * Adjoint` errors
7474
test_svd(a, usv)
75-
@test usv.U isa BlockDiagonal
76-
@test usv.Vt isa BlockDiagonal
77-
@test usv.S isa BlockVector
78-
79-
test_svd(a, usv2)
80-
@test usv.U isa BlockDiagonal
81-
@test usv.Vt isa BlockDiagonal
82-
@test usv.S isa BlockVector
8375
end

0 commit comments

Comments
 (0)