Skip to content

Commit 2c9f4b8

Browse files
committed
modified tests a bit
1 parent c632cf2 commit 2c9f4b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils.jl

Lines changed: 2 additions & 2 deletions
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 = mat[end]
108-
cols = div(prod(mat),rows)
107+
rows = div(prod(mat),rows)
108+
cols = mat[end]
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)