Skip to content

Commit

Permalink
Merge branch 'cheeseng-feature-pull-3.2-changes-230907'
Browse files Browse the repository at this point in the history
  • Loading branch information
bvenners committed Sep 20, 2023
2 parents faad04d + d2b95d7 commit 56358e5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
Expand Up @@ -518,7 +518,7 @@ class Framework extends SbtFramework {
)
}
else
throw new IllegalArgumentException("Class " + taskDefinition.fullyQualifiedName + " is neither accessible accesible org.scalatest.Suite nor runnable.")
throw new IllegalArgumentException("Class " + taskDefinition.fullyQualifiedName + " is neither accessible org.scalatest.Suite nor runnable.")
}

def taskDef = taskDefinition
Expand Down
Expand Up @@ -23,6 +23,8 @@ import Suite.indentation
import org.scalatest.exceptions.PropertyCheckFailedException
import org.scalatest.exceptions.StackDepth

import org.scalactic.Prettifier

/**
* A <code>Reporter</code> that prints test status information to
* a <code>Writer</code>, <code>OutputStream</code>, or file.
Expand Down Expand Up @@ -787,7 +789,7 @@ private[scalatest] object StringReporter {

case RunAborted(ordinal, message, throwable, duration, summary, formatter, location, payload, threadName, timeStamp) =>

fragmentsOnError(Resources.abortedNote, Any => Resources.runAborted, message, throwable, Vector.empty, formatter, None, None, duration,
fragmentsOnError(Resources.abortedNote, Any => Resources.runAborted + Option(message).map(msg => Prettifier.lineSeparator + msg.toString).getOrElse(""), message, throwable, Vector.empty, formatter, None, None, duration,
presentUnformatted, presentAllDurations, presentShortStackTraces, presentFullStackTraces, presentFilePathname, AnsiRed)

case SuiteStarting(ordinal, suiteName, suiteId, suiteClassName, formatter, location, rerunnable, payload, threadName, timeStamp) =>
Expand Down
1 change: 1 addition & 0 deletions jvm/scalactic/src/main/scala/org/scalactic/Bool.scala
Expand Up @@ -996,6 +996,7 @@ private[scalactic] class BinaryMacroBool(left: Any, operator: String, right: Any
}

case "|" =>

(left, right) match {
case (leftBool: Bool, rightBool: Bool) =>
Vector(
Expand Down
2 changes: 1 addition & 1 deletion project/BuildCommons.scala
Expand Up @@ -22,7 +22,7 @@ trait BuildCommons {
)

val releaseVersion = "3.3.0-SNAP3"
val previousReleaseVersion = "3.2.14"
val previousReleaseVersion = "3.2.17"

val plusJUnitVersion = "3.2.14.0"
val plusTestNGVersion = "3.2.14.0"
Expand Down
4 changes: 1 addition & 3 deletions project/JsBuild.scala
Expand Up @@ -82,9 +82,7 @@ trait JsBuild { this: BuildCommons =>
Compile / packageSrc / mappings ++= (scalacticMacroJS / Compile / packageSrc / mappings).value,
mimaPreviousArtifacts := Set(organization.value %%% moduleName.value % previousReleaseVersion),
mimaCurrentClassfiles := (Compile / classDirectory).value.getParentFile / (moduleName.value + sjsPrefix + scalaBinaryVersion.value + "-" + releaseVersion + ".jar"),
mimaBinaryIssueFilters ++= {
Seq()
}
mimaBinaryIssueFilters ++= Seq()
).settings(osgiSettings: _*).settings(
OsgiKeys.exportPackage := Seq(
"org.scalactic",
Expand Down
1 change: 1 addition & 0 deletions project/scalatest.scala
Expand Up @@ -429,6 +429,7 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
mimaCurrentClassfiles := (Compile / classDirectory).value.getParentFile / (name.value + "_" + scalaBinaryVersion.value + "-" + releaseVersion + ".jar")
).settings(osgiSettings: _*).settings(
OsgiKeys.exportPackage := Seq(
"images",
"org.scalatest",
"org.scalatest.compatible",
"org.scalatest.concurrent",
Expand Down

0 comments on commit 56358e5

Please sign in to comment.