From 7e42d0f334cbe6fc4a0a593c1b7e15642e6f054c Mon Sep 17 00:00:00 2001 From: Marcus Denker Date: Wed, 29 Nov 2023 11:42:18 +0100 Subject: [PATCH] use valueWithReceiver: --- .../StDebuggerActionModelTest.class.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NewTools-Debugger-Tests/StDebuggerActionModelTest.class.st b/src/NewTools-Debugger-Tests/StDebuggerActionModelTest.class.st index cf339eb19..b6896021b 100644 --- a/src/NewTools-Debugger-Tests/StDebuggerActionModelTest.class.st +++ b/src/NewTools-Debugger-Tests/StDebuggerActionModelTest.class.st @@ -127,7 +127,7 @@ StDebuggerActionModelTest >> newSessionWithBlockContext [ | process method | method := self class >> #methodWithBlockContext. methodWithBlockContextOriginalSource := method sourceCode. - process := [ method valueWithReceiver: self arguments: #( ) ] newProcess. + process := [ method valueWithReceiver: self ] newProcess. self setSessionAndDebuggerModelForMethod: method inContext: process suspendedContext. [ debugActionModel topContext closure isNil ] whileTrue: [ @@ -142,7 +142,7 @@ StDebuggerActionModelTest >> newSessionWithDeadHomeBlockContext [ | process method | method := self class >> #evaluateMethodWithDeadHomeBlockContext. methodWithBlockContextOriginalSource := method sourceCode. - process := [ method valueWithReceiver: self arguments: #( ) ] + process := [ method valueWithReceiver: self ] newProcess. self setSessionAndDebuggerModelForMethod: method @@ -195,7 +195,7 @@ StDebuggerActionModelTest >> setUp [ | method process | super setUp. method := self class >> #setResult. - process := [ method valueWithReceiver: self arguments: #( ) ] + process := [ method valueWithReceiver: self ] newProcess. self