Skip to content

Commit 0a1a8fb

Browse files
committed
Minor update to ErrorCommutativeMonoidSpec.scala
1 parent fa68274 commit 0a1a8fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/scala/com/phasmidsoftware/number/cats/ErrorCommutativeMonoidSpec.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import com.phasmidsoftware.number.core.{AbsoluteFuzz, FuzzyNumber, Gaussian, Num
77
import com.phasmidsoftware.number.misc.Benchmark._
88
import org.scalatest.flatspec.AnyFlatSpec
99
import org.scalatest.matchers.should.Matchers
10+
import org.scalatest.tagobjects.Slow
1011
import scala.concurrent.duration._
1112
import scala.concurrent.{Await, ExecutionContext, Future}
1213

@@ -19,11 +20,11 @@ class ErrorCommutativeMonoidSpec extends AnyFlatSpec with Matchers {
1920

2021
behavior of "Abstracting advocacy communication into lawful scalar folding"
2122

22-
it should "match decoupled parallel error folding with direct Number addition (all addition)" in {
23+
it should "match decoupled parallel error folding with direct Number addition (all addition)" taggedAs Slow in {
2324
implicit val ec: ExecutionContext = ExecutionContext.global
2425

2526
// Build many fuzzy addends: same nominal 1.2 with absolute Gaussian sigma 0.05
26-
val terms: List[Number] = List.fill(500) {
27+
val terms: List[Number] = List.fill(2000) {
2728
FuzzyNumber(Value.fromDouble(Some(1.2)), PureNumber, Some(AbsoluteFuzz(0.05, Gaussian)))
2829
}
2930

0 commit comments

Comments
 (0)