You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scalatest/src/main/scala/org/scalatest/tools/Framework.scala
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -436,9 +436,7 @@ class Framework extends SbtFramework {
436
436
if (accessible || runnable) {
437
437
valsuite=
438
438
try {
439
-
if (accessible)
440
-
suiteClass.newInstance.asInstanceOf[Suite]
441
-
else {
439
+
if (runnable) { // When it is runnable WrapWith is available, this will take precedence and this behavior will be consistent with Runner and the old ScalaTestFramework.
0 commit comments