We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f9758 commit f2e4dfaCopy full SHA for f2e4dfa
pkg/workflows/wasm/host/standard_test.go
@@ -129,9 +129,10 @@ func TestStandardModeSwitch(t *testing.T) {
129
})
130
// We want to make sure time.Sleep() is called at least twice in DON mode and once in node Mode
131
mockExecutionHelper.EXPECT().GetDONTime(mock.Anything).RunAndReturn(func(ctx context.Context) (time.Time, error) {
132
- donCall1 = true
133
if nodeCall {
134
donCall2 = true
+ } else {
135
+ donCall1 = true
136
}
137
return time.Now(), nil
138
0 commit comments