Skip to content

Commit 06672ae

Browse files
committed
fix bug identified by @testset wrapping
1 parent 8683f1f commit 06672ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pdmtypes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ using Test
3030
test_pdmat(PDiagMat(V), Matrix(Diagonal(V)), cmat_eq=true, verbose=1)
3131
end
3232
@testset "ScalMat" begin
33-
test_pdmat(ScalMat(3,x), x*Matrix{T}(I, 3, 3), cmat_eq=true, verbose=1)
33+
test_pdmat(ScalMat(3,X), X*Matrix{T}(I, 3, 3), cmat_eq=true, verbose=1)
3434
end
3535
@testset "PDSparseMat" begin
3636
test_pdmat(PDSparseMat(sparse(M)), M, cmat_eq=true, verbose=1, t_eig=false)

0 commit comments

Comments
 (0)