@@ -93,17 +93,18 @@ func TestInvoke(t *testing.T) {
9393func TestOperations (t * testing.T ) {
9494 testBinding := ZeebeCommand {logger : logger .NewLogger ("test" )}
9595 operations := testBinding .Operations ()
96- require .Equal (t , 12 , len (operations ))
96+ require .Equal (t , 13 , len (operations ))
9797 assert .Equal (t , TopologyOperation , operations [0 ])
9898 assert .Equal (t , DeployProcessOperation , operations [1 ])
99- assert .Equal (t , CreateInstanceOperation , operations [2 ])
100- assert .Equal (t , CancelInstanceOperation , operations [3 ])
101- assert .Equal (t , SetVariablesOperation , operations [4 ])
102- assert .Equal (t , ResolveIncidentOperation , operations [5 ])
103- assert .Equal (t , PublishMessageOperation , operations [6 ])
104- assert .Equal (t , ActivateJobsOperation , operations [7 ])
105- assert .Equal (t , CompleteJobOperation , operations [8 ])
106- assert .Equal (t , FailJobOperation , operations [9 ])
107- assert .Equal (t , UpdateJobRetriesOperation , operations [10 ])
108- assert .Equal (t , ThrowErrorOperation , operations [11 ])
99+ assert .Equal (t , DeployResourceOperation , operations [2 ])
100+ assert .Equal (t , CreateInstanceOperation , operations [3 ])
101+ assert .Equal (t , CancelInstanceOperation , operations [4 ])
102+ assert .Equal (t , SetVariablesOperation , operations [5 ])
103+ assert .Equal (t , ResolveIncidentOperation , operations [6 ])
104+ assert .Equal (t , PublishMessageOperation , operations [7 ])
105+ assert .Equal (t , ActivateJobsOperation , operations [8 ])
106+ assert .Equal (t , CompleteJobOperation , operations [9 ])
107+ assert .Equal (t , FailJobOperation , operations [10 ])
108+ assert .Equal (t , UpdateJobRetriesOperation , operations [11 ])
109+ assert .Equal (t , ThrowErrorOperation , operations [12 ])
109110}
0 commit comments