Skip to content

Commit 457a33e

Browse files
kshyattlkdvos
andcommitted
Update test/testsuite/svd.jl
Co-authored-by: Lukas Devos <[email protected]>
1 parent 631cf17 commit 457a33e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testsuite/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function test_svd_full(
106106
m, n = size(A)
107107
minmn = min(m, n)
108108

109-
U, S, Vᴴ = svd_full(A)
109+
U, S, Vᴴ = @testinferred svd_full(A)
110110
@test size(U) == (m, m)
111111
@test eltype(S) == real(eltype(T)) && size(S) == (m, n)
112112
@test size(Vᴴ) == (n, n)

0 commit comments

Comments
 (0)