Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit dd44454

Browse files
committed
Improve mul! testset names
1 parent 3e39435 commit dd44454

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sparse.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1975,7 +1975,7 @@ end
19751975
A = sparse(rand(elty,m,m))
19761976
x = rand(elty,m)
19771977
y = rand(elty,m)
1978-
@testset "csr" begin
1978+
@testset "csr -- $elty" begin
19791979
d_x = CuArray(x)
19801980
d_y = CuArray(y)
19811981
d_A = CuSparseMatrixCSR(A)
@@ -1994,7 +1994,7 @@ end
19941994
z = adjoint(A) * x
19951995
@test z h_y
19961996
end
1997-
@testset "csc" begin
1997+
@testset "csc -- $elty" begin
19981998
d_x = CuArray(x)
19991999
d_y = CuArray(y)
20002000
d_A = CuSparseMatrixCSC(A)

0 commit comments

Comments
 (0)