From 84877ed1a6e6ea83baf63b351fdbafd45f22cdad Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Tue, 4 Nov 2025 21:42:40 +0100 Subject: [PATCH] bugfix: Fix missing numberOfWorkers after recent merge --- repl/test/dotty/tools/repl/JSR223Tests.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repl/test/dotty/tools/repl/JSR223Tests.scala b/repl/test/dotty/tools/repl/JSR223Tests.scala index 2fd29fc9e548..8a7427553645 100644 --- a/repl/test/dotty/tools/repl/JSR223Tests.scala +++ b/repl/test/dotty/tools/repl/JSR223Tests.scala @@ -21,11 +21,11 @@ final class JSR223Tests: end JSR223Tests object JSR223Tests extends ParallelTesting: - + given report: SummaryReporting = new SummaryReport def maxDuration = 100.seconds - def numberOfSlaves = Runtime.getRuntime().availableProcessors() + def numberOfWorkers = Runtime.getRuntime().availableProcessors() def safeMode = dotty.Properties.testsSafeMode def isInteractive = SummaryReport.isInteractive def testFilter = dotty.Properties.testsFilter