From 89610ea0b438c25733780d9060e040a60a92fe58 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Tue, 6 Dec 2022 10:48:40 +0800 Subject: [PATCH] Updated scaladoc in StepwiseNestedSuiteExecution.scala about passing down None for distributor field, it no longer true. --- .../main/scala/org/scalatest/StepwiseNestedSuiteExecution.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jvm/core/src/main/scala/org/scalatest/StepwiseNestedSuiteExecution.scala b/jvm/core/src/main/scala/org/scalatest/StepwiseNestedSuiteExecution.scala index 32611d39c1..cb9e828cd9 100644 --- a/jvm/core/src/main/scala/org/scalatest/StepwiseNestedSuiteExecution.scala +++ b/jvm/core/src/main/scala/org/scalatest/StepwiseNestedSuiteExecution.scala @@ -28,7 +28,7 @@ import collection.mutable.ListBuffer * Trait that causes the nested suites of any suite it is mixed into to be run sequentially even if * a Distributor is passed to runNestedSuites. This trait overrides the * runNestedSuites method and fowards every parameter passed to it to a superclass invocation - * of runNestedSuites, except it always passes None for the Distributor. + * of runNestedSuites, and make the nested suites are run and completed one after one in order. * Mix in this trait into any suite whose nested suites need to be run sequentially even with the rest of the * run is being executed concurrently. */