Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Aug 1, 2023
1 parent 6e67d45 commit 57df98d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/execution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,14 +245,14 @@ func TestCreateWorkflowExecutionsWithTags(t *testing.T) {
client, conn := GetTestAdminServiceClient()
defer conn.Close()

resp, err := client.CreateExecution(ctx, &admin.ExecutionCreateRequest{
_, err := client.CreateExecution(ctx, &admin.ExecutionCreateRequest{
Project: "project1",
Domain: "domain1",
Name: "name5",
Spec: &admin.ExecutionSpec{Tags: []string{"hello", "flyte"}},
})
assert.Nil(t, err)
resp, err := client.CreateExecution(ctx, &admin.ExecutionCreateRequest{
_, err = client.CreateExecution(ctx, &admin.ExecutionCreateRequest{
Project: "project1",
Domain: "domain1",
Name: "name6",
Expand Down

0 comments on commit 57df98d

Please sign in to comment.