Skip to content

Commit 8f2e4ed

Browse files
committed
Rectified mistake.
1 parent 2c9f4b8 commit 8f2e4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ end
104104
end
105105
for mat in [(3,4,5),(2,2,5)]
106106
v = orthogonal(mat...)
107-
rows = div(prod(mat),rows)
108107
cols = mat[end]
108+
rows = div(prod(mat),cols)
109109
v = reshape(v, (rows,cols))
110110
rows < cols ? (@test v * v' I(rows)) : (@test v' * v I(cols))
111111
end

0 commit comments

Comments
 (0)