From 563c1c289e31cf908d139b5e699b4201815f3a9b Mon Sep 17 00:00:00 2001 From: Juraj Kubelka Date: Wed, 21 Aug 2024 14:57:42 +0200 Subject: [PATCH] use `#allActionsFuture` [feenkcom/gtoolkit#3947] --- .../GtRemotePhlowForwarderViewInspectionExamples.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GToolkit-RemoteGt/GtRemotePhlowForwarderViewInspectionExamples.class.st b/src/GToolkit-RemoteGt/GtRemotePhlowForwarderViewInspectionExamples.class.st index 24991063..14d15382 100644 --- a/src/GToolkit-RemoteGt/GtRemotePhlowForwarderViewInspectionExamples.class.st +++ b/src/GToolkit-RemoteGt/GtRemotePhlowForwarderViewInspectionExamples.class.st @@ -24,7 +24,7 @@ GtRemotePhlowForwarderViewInspectionExamples >> assertBasicForwarderView: aView self assert: aView title equals: 'Forwarded view'. self assert: aView actions size equals: 0. - self assert: aView allActionsPromise wait size equals: 0. + self assert: aView allActionsFuture wait size equals: 0. self assert: aView actions size equals: 0. self assert: ((aView asElementDo: [ :anElement | anElement ]) isKindOf: BrFromFuture). ]