t.Fatalf("NewGoRoutine did not fail. Expected: <Failed to create operation with name \"%s\". An operation with that name already exists.> Actual: <no error>",operationName)
t.Fatalf("NewGoRoutine did not fail. Expected: <Failed to create operation with name \"%s\". An operation with that name already exists.> Actual: <no error>",operationName)
}
// Act
operation1DoneCh<-true// Force operation1 to complete
err3:=retryWithExponentialBackOff(
time.Duration(20*time.Millisecond),
func()(bool,error){
err:=grm.NewGoRoutine(operationName,operation3)
iferr!=nil{
t.Logf("Warning: NewGoRoutine failed. Expected: <no error> Actual: <%v>. Will retry.",err)