From 7b5d3a90f8466100bcab933f47eb01a09fe6a558 Mon Sep 17 00:00:00 2001 From: Reynier Ortiz Date: Wed, 4 Dec 2024 18:30:09 -0500 Subject: [PATCH] remove unused method --- internal/internal_workflow_testsuite.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/internal_workflow_testsuite.go b/internal/internal_workflow_testsuite.go index c802aa60b..fc11f875a 100644 --- a/internal/internal_workflow_testsuite.go +++ b/internal/internal_workflow_testsuite.go @@ -428,12 +428,6 @@ func (env *testWorkflowEnvironmentImpl) setContinuedExecutionRunID(rid string) { env.workflowInfo.ContinuedExecutionRunID = rid } -func (env *testWorkflowEnvironmentImpl) inOrderMockCalls(calls ...*MockCallWrapper) { - for i := 1; i < len(calls); i++ { - calls[i].NotBefore(calls[i-1]) - } -} - func (env *testWorkflowEnvironmentImpl) newTestWorkflowEnvironmentForChild(params *ExecuteWorkflowParams, callback ResultHandler, startedHandler func(r WorkflowExecution, e error)) (*testWorkflowEnvironmentImpl, error) { // create a new test env childEnv := newTestWorkflowEnvironmentImpl(env.testSuite, env.registry)