From 12a837b5b93a44a9c657a9b9ec77a324530440ae Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Mon, 10 Jul 2023 11:40:03 +0200 Subject: [PATCH] Intermediate test relaxation --- test/linalg.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/linalg.jl b/test/linalg.jl index cfc9456d..c4de6764 100644 --- a/test/linalg.jl +++ b/test/linalg.jl @@ -138,7 +138,7 @@ end ACa = sparse(trop(AC)) # copied and adjoint @test AT \ B ≈ AC \ B @test ATa \ B ≈ ACa \ B - @test ATa \ sparse(B) == ATa \ B + @test ATa \ sparse(B) ≈ ATa \ B @test Matrix(ATa) \ B ≈ ATa \ B @test ATa * ( ATa \ B ) ≈ B end