bump tink for e2e test

Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
This commit is contained in:
Gianluca Arbezzano
2020-11-12 17:26:24 +01:00
parent 1c4f829252
commit fdaab9b279
3 changed files with 396 additions and 22 deletions

View File

@ -120,7 +120,7 @@ func TestVagrantSetupGuide(t *testing.T) {
t.Fatal(err)
}
for event, err := events.Recv(); err == nil && event != nil; event, err = events.Recv() {
if event.ActionName == "hello_world" && event.ActionStatus == workflow.ActionState_ACTION_SUCCESS {
if event.ActionName == "hello_world" && event.ActionStatus == workflow.State_STATE_SUCCESS {
t.Logf("event %s SUCCEEDED as expected", event.ActionName)
return
}