Skip to content

Commit 5590e18

Browse files
authored
Merge pull request #2 from dkarrasch/patch-1
Matrixify Q before comparison
2 parents 1abe49f + 2f2ffb1 commit 5590e18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ end
2828
@test FNC.lsqrfact(A,b) A\b
2929
Q,R = qr(A)
3030
QQ,RR = FNC.qrfact(A)
31-
@test Q QQ
31+
@test Matrix(Q) QQ
3232
@test R RR[1:3,:]
3333
end
3434

@@ -258,4 +258,4 @@ end
258258
u = FNC.elliptic(pde,g,30,[0,2.5],24,[0,1]);
259259
@test u(1.25,0.5) 1.7236921361 rtol = 1e-6
260260
@test u(1,0) 1 rtol = 1e-6
261-
end
261+
end

0 commit comments

Comments
 (0)