@@ -1082,11 +1082,9 @@ func TestAsyncOperationFromWorkflow_MultipleCallers(t *testing.T) {
10821082 {
10831083 input : "conflict-policy-use-existing" ,
10841084 checkOutput : func (t * testing.T , numCalls int , res CallerWfOutput , err error ) {
1085- // TODO(rodrigozhou): assert NotError and remove the comments below after UseExisting is
1086- // unblocked.
1087- require .ErrorContains (t , err , "workflow ID conflict policy UseExisting is not supported for Nexus WorkflowRunOperation" )
1088- // require.EqualValues(t, numCalls, res.CntOk)
1089- // require.EqualValues(t, 0, res.CntErr)
1085+ require .NoError (t , err )
1086+ require .EqualValues (t , numCalls , res .CntOk )
1087+ require .EqualValues (t , 0 , res .CntErr )
10901088 },
10911089 },
10921090 }
@@ -1779,11 +1777,9 @@ func TestWorkflowTestSuite_WorkflowRunOperation_MultipleCallers(t *testing.T) {
17791777 {
17801778 input : "conflict-policy-use-existing" ,
17811779 checkOutput : func (t * testing.T , numCalls int , res CallerWfOutput , err error ) {
1782- // TODO(rodrigozhou): assert NotError and remove the comments below after UseExisting is
1783- // unblocked.
1784- require .ErrorContains (t , err , "workflow ID conflict policy UseExisting is not supported for Nexus WorkflowRunOperation" )
1785- // require.EqualValues(t, numCalls, res.CntOk)
1786- // require.EqualValues(t, 0, res.CntErr)
1780+ require .NoError (t , err )
1781+ require .EqualValues (t , numCalls , res .CntOk )
1782+ require .EqualValues (t , 0 , res .CntErr )
17871783 },
17881784 },
17891785 }
0 commit comments