Skip to content

Commit 0e69356

Browse files
Update test/preferences.jl
1 parent da8f72d commit 0e69356

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/preferences.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,14 +289,14 @@ using Preferences
289289
prob_other = LinearProblem(A_other, b_other)
290290
sol_other = solve(prob_other)
291291
@test sol_other.retcode == ReturnCode.Success
292-
@test norm(A_other * sol_other.u - b_other) < (other_size <= 10 ? 1e-12 : 1e-8)
292+
@test norm(A_other * sol_other.u - b_other) < (other_size <= 10 ? 1e-12 : 1e-6)
293293
end
294294

295295
# Test that RFLU size problem solves
296296
prob_rflu = LinearProblem(A_rflu, b_rflu)
297297
sol_rflu = solve(prob_rflu)
298298
@test sol_rflu.retcode == ReturnCode.Success
299-
@test norm(A_rflu * sol_rflu.u - b_rflu) < (rflu_size <= 10 ? 1e-12 : 1e-8)
299+
@test norm(A_rflu * sol_rflu.u - b_rflu) < (rflu_size <= 10 ? 1e-12 : 1e-6)
300300
end
301301
end
302302

0 commit comments

Comments
 (0)