Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
popojk committed Nov 29, 2024
1 parent ee50555 commit e717145
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flyteadmin/pkg/manager/impl/task_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ func TestCreateTask_DuplicateTaskRegistration(t *testing.T) {
func(input interfaces.Identifier) (models.Task, error) {
return models.Task{
TaskKey: models.TaskKey{
Project: taskIdentifier.Project,
Domain: taskIdentifier.Domain,
Name: taskIdentifier.Name,
Version: taskIdentifier.Version,
Project: taskIdentifier.GetProject(),
Domain: taskIdentifier.GetDomain(),
Name: taskIdentifier.GetName(),
Version: taskIdentifier.GetVersion(),
},
Digest: []byte{
0xbf, 0x79, 0x61, 0x1c, 0xf5, 0xc1, 0xfb, 0x4c, 0xf8, 0xf4, 0xc4, 0x53, 0x5f, 0x8f, 0x73, 0xe2, 0x26, 0x5a,
Expand Down

0 comments on commit e717145

Please sign in to comment.