Skip to content

Commit

Permalink
Tests: increase error tolerance in PanamaFloatVectorOpsSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
alexklibisz committed Dec 9, 2023
1 parent d98f2f9 commit b8ced43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PanamaFloatVectorOpsSpec extends AnyFreeSpec with Matchers {
if (f1 == f2) succeed
else {
val error: Double = (f1 - f2).abs / f1.abs.min(f2.abs)
error shouldBe <(0.015)
error shouldBe <(0.02)
}
}

Expand Down

0 comments on commit b8ced43

Please sign in to comment.