From 238cd6f6c2e01bf498c5623f97d215fcf60c2464 Mon Sep 17 00:00:00 2001 From: Vladislav Sukhin Date: Tue, 11 Feb 2025 17:06:56 +0300 Subject: [PATCH] fix: unit test Signed-off-by: Vladislav Sukhin --- pkg/repository/testworkflow/mongo_integration_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/repository/testworkflow/mongo_integration_test.go b/pkg/repository/testworkflow/mongo_integration_test.go index ce4126939b..56132d483b 100644 --- a/pkg/repository/testworkflow/mongo_integration_test.go +++ b/pkg/repository/testworkflow/mongo_integration_test.go @@ -597,8 +597,6 @@ func TestNewMongoRepository_Get_Integration(t *testing.T) { assert.Equal(t, execution2.Id, result.Id) assert.Equal(t, execution2.Name, result.Name) assert.Equal(t, true, result.ConfigParams["param1"].Sensitive) - assert.Equal(t, true, result.ConfigParams["param1"].EmptyValue) - assert.Equal(t, true, result.ConfigParams["param1"].EmptyDefaultValue) execution3 := testkube.TestWorkflowExecution{ Id: "test-id-3", @@ -636,6 +634,4 @@ func TestNewMongoRepository_Get_Integration(t *testing.T) { assert.Equal(t, execution3.Id, result.Id) assert.Equal(t, execution3.Name, result.Name) assert.Equal(t, true, result.ConfigParams["param1"].Sensitive) - assert.Equal(t, true, result.ConfigParams["param1"].EmptyValue) - assert.Equal(t, true, result.ConfigParams["param1"].EmptyDefaultValue) }