From 03a6b735c35ac5d6b3538270f14587d2f5b897f5 Mon Sep 17 00:00:00 2001 From: pmahindrakar-oss Date: Mon, 9 Sep 2024 13:07:44 -0700 Subject: [PATCH] lint fix --- .../pkg/manager/impl/validation/execution_validator_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go b/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go index 19c3b2c164..7e5f991788 100644 --- a/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go @@ -135,7 +135,8 @@ func TestGetExecutionWithOffloadedInputs(t *testing.T) { } assert.Nil(t, err) assert.NotNil(t, actualInputs) - assert.EqualValues(t, expectedMap, *actualInputs) + assert.EqualValues(t, expectedMap.GetLiterals()["foo"], actualInputs.Literals["foo"]) + assert.EqualValues(t, expectedMap.GetLiterals()["bar"], actualInputs.Literals["bar"]) } func TestValidateExecInputsWrongType(t *testing.T) {