From 57df98d62c3b5797d064a56e3d386df15ae9410d Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Tue, 1 Aug 2023 13:38:24 -0700 Subject: [PATCH] nit Signed-off-by: Kevin Su --- tests/execution_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/execution_test.go b/tests/execution_test.go index c8734213b..82f061959 100644 --- a/tests/execution_test.go +++ b/tests/execution_test.go @@ -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",