This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new 2c6cdec69e Update scalatest to 3.2.20 (#2792)
2c6cdec69e is described below

commit 2c6cdec69e6ec745e28cf1ecefc824686d8f90eb
Author: Scala Steward <[email protected]>
AuthorDate: Sun Mar 29 13:02:05 2026 +0200

    Update scalatest to 3.2.20 (#2792)
    
    * Update scalatest to 3.2.20
    
    Update Dependencies.scala
    
    Update Dependencies.scala
    
    * Update DispatcherActorSpec.scala
    
    ---------
    
    Co-authored-by: PJ Fanning <[email protected]>
---
 .../scala/org/apache/pekko/actor/dispatch/DispatcherActorSpec.scala | 3 ++-
 project/Dependencies.scala                                          | 6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git 
a/actor-tests/src/test/scala/org/apache/pekko/actor/dispatch/DispatcherActorSpec.scala
 
b/actor-tests/src/test/scala/org/apache/pekko/actor/dispatch/DispatcherActorSpec.scala
index 8d8407c6be..d2b3dd02e9 100644
--- 
a/actor-tests/src/test/scala/org/apache/pekko/actor/dispatch/DispatcherActorSpec.scala
+++ 
b/actor-tests/src/test/scala/org/apache/pekko/actor/dispatch/DispatcherActorSpec.scala
@@ -97,7 +97,8 @@ class DispatcherActorSpec extends 
PekkoSpec(DispatcherActorSpec.config) with Def
         }
       }).withDispatcher(throughputDispatcher))
 
-      assert(Await.result(slowOne ? "hogexecutor", timeout.duration) === "OK")
+      val slowResult = Await.result(slowOne ? "hogexecutor", timeout.duration)
+      assert(slowResult === "OK")
       (1 to 100).foreach { _ =>
         slowOne ! "ping"
       }
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 04ec290c1a..6f73fa9d9d 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -47,7 +47,7 @@ object Dependencies {
 
   val reactiveStreamsVersion = "1.0.4"
 
-  val scalaTestVersion = "3.2.19"
+  val scalaTestVersion = "3.2.20"
   val scalaTestScalaCheckVersion = "1-19"
   val scalaCheckVersion = "1.19.0"
 
@@ -131,11 +131,11 @@ object Dependencies {
       // but the version of each module starts with the scalatest
       // version it was intended to work with
       val scalatestJUnit = "org.scalatestplus" %% "junit-4-13" % 
(scalaTestVersion + ".0") % Test
-      val scalatestTestNG = "org.scalatestplus" %% "testng-7-10" % 
(scalaTestVersion + ".0") % Test
+      val scalatestTestNG = "org.scalatestplus" %% "testng-7-12" % 
(scalaTestVersion + ".0") % Test
       val scalatestScalaCheck =
         "org.scalatestplus" %% s"scalacheck-$scalaTestScalaCheckVersion" % 
(scalaTestVersion + ".0") % Test
       // https://github.com/scalatest/scalatest/issues/2311
-      val scalatestMockito = "org.scalatestplus" %% "mockito-5-21" % 
(scalaTestVersion + ".0") % Test
+      val scalatestMockito = "org.scalatestplus" %% "mockito-5-23" % 
(scalaTestVersion + ".0") % Test
 
       val pojosr = "com.googlecode.pojosr" % "de.kalpatec.pojosr.framework" % 
"0.2.1" % Test
       val tinybundles = "org.ops4j.pax.tinybundles" % "tinybundles" % "4.0.1" 
% Test


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to