From cecaab5c7cc16e4ce4d180481af5d122110def15 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sun, 14 Jan 2024 10:45:30 +0100 Subject: [PATCH] Fix another send of `timeToRun:` to use `SmalltalkCI platformClass` as receiver instead of `SmalltalkCI` --- .../SCITestRunner.class/instance/runCase..st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/SmalltalkCI-Core.package/SCITestRunner.class/instance/runCase..st b/repository/SmalltalkCI-Core.package/SCITestRunner.class/instance/runCase..st index 7b075ffd..7f49deb6 100644 --- a/repository/SmalltalkCI-Core.package/SCITestRunner.class/instance/runCase..st +++ b/repository/SmalltalkCI-Core.package/SCITestRunner.class/instance/runCase..st @@ -3,7 +3,7 @@ runCase: aTestCase | result | SmalltalkCI printDebug: aTestCase asString. result := SCITestRunnerResult new testCase: aTestCase; yourself. - result time: (SmalltalkCI timeToRun: [ + result time: (SmalltalkCI platformClass timeToRun: [ [ [ self basicRunCase: aTestCase ] on: self class errorExceptions do: [ :err |