Skip to content

Commit 89c8d33

Browse files
committed
Add missing import
1 parent 94aad1d commit 89c8d33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_matrixalgebra.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using LinearAlgebra: I, diag
1+
using LinearAlgebra: I, diag, isposdef
22
using TensorAlgebra.MatrixAlgebra: MatrixAlgebra
33
using Test: @test, @testset
44

55
elts = (Float32, Float64, ComplexF32, ComplexF64)
66

7-
@testset "elt=$elt" for elt in elts
7+
@testset "TensorAlgebra.MatrixAlgebra (elt=$elt)" for elt in elts
88
A = randn(elt, 3, 2)
99
for positive in (false, true)
1010
for (Q, R) in (MatrixAlgebra.qr(A; positive), MatrixAlgebra.qr(A; full=false, positive))

0 commit comments

Comments
 (0)