You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require(receivedActions.isEmpty()) { "Must handle all received actions before performing this work" }
127
+
require(receivedActions.isEmpty()) { "Must handle all received actions before performing this work."+ receivedActions.joinToString(separator ="\n") +"are not handled" }
128
128
step.block(environment)
129
129
}
130
130
isStep.Do-> step.block()
@@ -139,6 +139,6 @@ private constructor(
139
139
}
140
140
}
141
141
142
-
require(receivedActions.isEmpty()) { "Must handle all actions" }
0 commit comments