Skip to content

Commit db0c31e

Browse files
authored
Merge pull request scalatest#2121 from cheeseng/feature-3.2.12-rel
3.2.12 Release
2 parents 08e0869 + ba478fa commit db0c31e

40 files changed

+68
-59
lines changed

jvm/core/src/main/scala/org/scalatest/Suites.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import org.scalactic.exceptions.NullArgumentException
5353
* @author Bill Venners
5454
*/
5555
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
56-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
56+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5757
class Suites(suitesToNest: Suite*) extends Suite { thisSuite =>
5858

5959
requireNonNull(suitesToNest)

jvm/featurespec/src/main/scala/org/scalatest/featurespec/AnyFeatureSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import org.scalatest.exceptions._
4343
*/
4444
@Finders(Array("org.scalatest.finders.FeatureSpecFinder"))
4545
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4747
trait AnyFeatureSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4848

4949
private final val engine = new Engine(Resources.concurrentFeatureSpecMod, "FeatureSpec")

jvm/featurespec/src/main/scala/org/scalatest/featurespec/AsyncFeatureSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import scala.util.Try
4949
*/
5050

5151
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
52-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
52+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5353
@Finders(Array("org.scalatest.finders.FeatureSpecFinder"))
5454
trait AsyncFeatureSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5555

jvm/featurespec/src/main/scala/org/scalatest/featurespec/FixtureAnyFeatureSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import org.scalatest.Suite.autoTagClassAnnotations
4242
* @author Bill Venners
4343
*/
4444
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
45-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
45+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4646
@Finders(Array("org.scalatest.finders.FeatureSpecFinder"))
4747
trait FixtureAnyFeatureSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4848

jvm/featurespec/src/main/scala/org/scalatest/featurespec/FixtureAsyncFeatureSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import scala.util.Try
4848
* @author Bill Venners
4949
*/
5050
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
51-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
51+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5252
@Finders(Array("org.scalatest.finders.FeatureSpecFinder"))
5353
trait FixtureAsyncFeatureSpecLike extends org.scalatest.FixtureAsyncTestSuite with org.scalatest.FixtureAsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5454

jvm/flatspec/src/main/scala/org/scalatest/flatspec/AnyFlatSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import verbs.{ResultOfTaggedAsInvocation, ResultOfStringPassedToVerb, BehaveWord
4747
*/
4848
@Finders(Array("org.scalatest.finders.FlatSpecFinder"))
4949
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
50-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
50+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5151
trait AnyFlatSpecLike extends TestSuite with TestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
5252

5353
private final val engine = new Engine(Resources.concurrentSpecMod, "Spec")

jvm/flatspec/src/main/scala/org/scalatest/flatspec/AsyncFlatSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import scala.util.Try
4545
* @author Bill Venners
4646
*/
4747
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4949
@Finders(Array("org.scalatest.finders.FlatSpecFinder"))
5050
trait AsyncFlatSpecLike extends AsyncTestSuite with AsyncTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
5151

jvm/flatspec/src/main/scala/org/scalatest/flatspec/FixtureAnyFlatSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import verbs.{ResultOfTaggedAsInvocation, ResultOfStringPassedToVerb, BehaveWord
4343
* @author Bill Venners
4444
*/
4545
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4747
@Finders(Array("org.scalatest.finders.FlatSpecFinder"))
4848
trait FixtureAnyFlatSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
4949

jvm/flatspec/src/main/scala/org/scalatest/flatspec/FixtureAsyncFlatSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import scala.util.Try
4545
* @author Bill Venners
4646
*/
4747
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4949
@Finders(Array("org.scalatest.finders.FlatSpecFinder"))
5050
trait FixtureAsyncFlatSpecLike extends org.scalatest.FixtureAsyncTestSuite with org.scalatest.FixtureAsyncTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
5151

jvm/freespec/src/main/scala/org/scalatest/freespec/AnyFreeSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import org.scalatest.exceptions._
4545
*/
4646
@Finders(Array("org.scalatest.finders.FreeSpecFinder"))
4747
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4949
trait AnyFreeSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5050

5151
private final val engine = new Engine(Resources.concurrentFreeSpecMod, "FreeSpec")

jvm/freespec/src/main/scala/org/scalatest/freespec/AsyncFreeSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import scala.util.Try
4646
* @author Bill Venners
4747
*/
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
@Finders(Array("org.scalatest.finders.FreeSpecFinder"))
5151
trait AsyncFreeSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5252

jvm/freespec/src/main/scala/org/scalatest/freespec/FixtureAnyFreeSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import org.scalatest.fixture.{Transformer, NoArgTestWrapper}
4545
* @author Bill Venners
4646
*/
4747
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4949
@Finders(Array("org.scalatest.finders.FreeSpecFinder"))
5050
trait FixtureAnyFreeSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5151

jvm/freespec/src/main/scala/org/scalatest/freespec/FixtureAsyncFreeSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import scala.util.Try
4646
* @author Bill Venners
4747
*/
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
@Finders(Array("org.scalatest.finders.FreeSpecFinder"))
5151
trait FixtureAsyncFreeSpecLike extends org.scalatest.FixtureAsyncTestSuite with org.scalatest.FixtureAsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5252

jvm/freespec/src/main/scala/org/scalatest/freespec/PathAnyFreeSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import Suite.autoTagClassAnnotations
4646
*/
4747
@Finders(Array("org.scalatest.finders.FreeSpecFinder"))
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
trait PathAnyFreeSpecLike extends org.scalatest.Suite with OneInstancePerTest with Informing with Notifying with Alerting with Documenting { thisSuite =>
5151

5252
private final val engine = PathEngine.getEngine()

jvm/funspec/src/main/scala/org/scalatest/funspec/AnyFunSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import org.scalatest.exceptions._
4545
*/
4646
@Finders(Array("org.scalatest.finders.FunSpecFinder"))
4747
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
48+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4949
trait AnyFunSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5050

5151
private final val engine = new Engine(Resources.concurrentSpecMod, "FunSpec")

jvm/funspec/src/main/scala/org/scalatest/funspec/AsyncFunSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import scala.util.Try
4646
* @author Bill Venners
4747
*/
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
@Finders(Array("org.scalatest.finders.FunSpecFinder"))
5151
trait AsyncFunSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5252

jvm/funspec/src/main/scala/org/scalatest/funspec/FixtureAnyFunSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import verbs.BehaveWord
4747
* @author Bill Venners
4848
*/
4949
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
50-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
50+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5151
@Finders(Array("org.scalatest.finders.FunSpecFinder"))
5252
trait FixtureAnyFunSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5353

jvm/funspec/src/main/scala/org/scalatest/funspec/FixtureAsyncFunSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import scala.util.Try
4646
* @author Bill Venners
4747
*/
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
@Finders(Array("org.scalatest.finders.FunSpecFinder"))
5151
trait FixtureAsyncFunSpecLike extends org.scalatest.FixtureAsyncTestSuite with org.scalatest.FixtureAsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
5252

jvm/funspec/src/main/scala/org/scalatest/funspec/PathAnyFunSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import org.scalatest.PathEngine.isInTargetPath
4646
*/
4747
@Finders(Array("org.scalatest.finders.FunSpecFinder"))
4848
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
49+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5050
trait PathAnyFunSpecLike extends org.scalatest.Suite with OneInstancePerTest with Informing with Notifying with Alerting with Documenting { thisSuite =>
5151

5252
private final val engine = PathEngine.getEngine()

jvm/funsuite/src/main/scala/org/scalatest/funsuite/AnyFunSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1559,7 +1559,7 @@ import org.scalatest.{Suite, Finders}
15591559
*/
15601560
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
15611561
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
1562-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
1562+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
15631563
class AnyFunSuite extends AnyFunSuiteLike {
15641564

15651565
/**

jvm/funsuite/src/main/scala/org/scalatest/funsuite/AnyFunSuiteLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import Suite.autoTagClassAnnotations
4343
*/
4444
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
4545
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4747
trait AnyFunSuiteLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4848

4949
private final val engine = new Engine(Resources.concurrentFunSuiteMod, "FunSuite")

jvm/funsuite/src/main/scala/org/scalatest/funsuite/AsyncFunSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2187,7 +2187,7 @@ import org.scalatest.{Suite, Finders}
21872187
* </ul>
21882188
*/
21892189
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
2190-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
2190+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
21912191
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
21922192
abstract class AsyncFunSuite extends AsyncFunSuiteLike {
21932193

jvm/funsuite/src/main/scala/org/scalatest/funsuite/AsyncFunSuiteLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import scala.util.Try
4242
* @author Bill Venners
4343
*/
4444
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
45-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
45+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4646
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
4747
trait AsyncFunSuiteLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4848

jvm/funsuite/src/main/scala/org/scalatest/funsuite/FixtureAnyFunSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ import org.scalatest.Suite.autoTagClassAnnotations
225225
* @author Bill Venners
226226
*/
227227
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
228-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
228+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
229229
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
230230
abstract class FixtureAnyFunSuite extends FixtureAnyFunSuiteLike {
231231

jvm/funsuite/src/main/scala/org/scalatest/funsuite/FixtureAnyFunSuiteLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import org.scalatest.Suite.autoTagClassAnnotations
4141
* @author Bill Venners
4242
*/
4343
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4545
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
4646
trait FixtureAnyFunSuiteLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4747

jvm/funsuite/src/main/scala/org/scalatest/funsuite/FixtureAsyncFunSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ import org.scalatest.Suite.autoTagClassAnnotations
262262
* @author Bill Venners
263263
*/
264264
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
265-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
265+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
266266
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
267267
trait FixtureAsyncFunSuite extends funsuite.FixtureAsyncFunSuiteLike with Informing with Notifying with Alerting with Documenting { thisSuite =>
268268

jvm/funsuite/src/main/scala/org/scalatest/funsuite/FixtureAsyncFunSuiteLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import scala.util.Try
4343
* @author Bill Venners
4444
*/
4545
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4747
@Finders(Array("org.scalatest.finders.FunSuiteFinder"))
4848
trait FixtureAsyncFunSuiteLike extends org.scalatest.FixtureAsyncTestSuite with org.scalatest.FixtureAsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4949

jvm/propspec/src/main/scala/org/scalatest/propspec/AnyPropSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import Suite.autoTagClassAnnotations
4141
*/
4242
@Finders(Array("org.scalatest.finders.PropSpecFinder"))
4343
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4545
trait AnyPropSpecLike extends TestSuite with TestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4646

4747
private final val engine = new Engine(Resources.concurrentPropSpecMod, "PropSpec")

jvm/propspec/src/main/scala/org/scalatest/propspec/AsyncPropSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import scala.util.Try
4141
* @author Bill Venners
4242
*/
4343
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4545
@Finders(Array("org.scalatest.finders.PropSpecFinder"))
4646
trait AsyncPropSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4747

jvm/propspec/src/main/scala/org/scalatest/propspec/FixtureAnyPropSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import org.scalatest.Suite.autoTagClassAnnotations
4141
* @author Bill Venners
4242
*/
4343
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4545
@Finders(Array("org.scalatest.finders.PropSpecFinder"))
4646
trait FixtureAnyPropSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4747

jvm/propspec/src/main/scala/org/scalatest/propspec/FixtureAsyncPropSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import scala.util.Try
4343
* @author Bill Venners
4444
*/
4545
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
46+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4747
@Finders(Array("org.scalatest.finders.PropSpecFinder"))
4848
trait FixtureAsyncPropSpecLike extends AsyncTestSuite with AsyncTestRegistration with Informing with Notifying with Alerting with Documenting { thisSuite =>
4949

jvm/wordspec/src/main/scala/org/scalatest/wordspec/AnyWordSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import verbs.{CanVerb, ResultOfAfterWordApplication, ShouldVerb, BehaveWord,
4040
*/
4141
@Finders(Array("org.scalatest.finders.WordSpecFinder"))
4242
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
43-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
43+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4444
trait AnyWordSpecLike extends TestSuite with TestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
4545

4646
private final val engine = new Engine(Resources.concurrentWordSpecMod, "WordSpecLike")

jvm/wordspec/src/main/scala/org/scalatest/wordspec/AsyncWordSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import scala.util.Try
4141
* @author Bill Venners
4242
*/
4343
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
44+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
4545
@Finders(Array("org.scalatest.finders.WordSpecFinder"))
4646
trait AsyncWordSpecLike extends AsyncTestSuite with AsyncTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
4747

jvm/wordspec/src/main/scala/org/scalatest/wordspec/FixtureAnyWordSpecLike.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ StringVerbBlockRegistration, SubjectWithAfterWordRegistration}
4848
* @author Bill Venners
4949
*/
5050
//SCALATESTJS-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
51-
//SCALATESTNATIVE-ONLY @scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
51+
//SCALATESTNATIVE-ONLY @scala.scalanative.reflect.annotation.EnableReflectiveInstantiation
5252
@Finders(Array("org.scalatest.finders.WordSpecFinder"))
5353
trait FixtureAnyWordSpecLike extends org.scalatest.FixtureTestSuite with org.scalatest.FixtureTestRegistration with ShouldVerb with MustVerb with CanVerb with Informing with Notifying with Alerting with Documenting { thisSuite =>
5454

0 commit comments

Comments
 (0)