Skip to content

Commit 84877ed

Browse files
committed
bugfix: Fix missing numberOfWorkers after recent merge
1 parent bf911e5 commit 84877ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

repl/test/dotty/tools/repl/JSR223Tests.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ final class JSR223Tests:
2121
end JSR223Tests
2222

2323
object JSR223Tests extends ParallelTesting:
24-
24+
2525
given report: SummaryReporting = new SummaryReport
2626

2727
def maxDuration = 100.seconds
28-
def numberOfSlaves = Runtime.getRuntime().availableProcessors()
28+
def numberOfWorkers = Runtime.getRuntime().availableProcessors()
2929
def safeMode = dotty.Properties.testsSafeMode
3030
def isInteractive = SummaryReport.isInteractive
3131
def testFilter = dotty.Properties.testsFilter

0 commit comments

Comments
 (0)