Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
MChorfa committed Sep 29, 2021
1 parent 16ff08d commit 680b055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/helm3/execute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func TestMixin_UnmarshalExecuteLoginRegistryStep(t *testing.T) {
builder.Flag{Name: "u", Values: []string{"myuser"}},
}

assert.Equal(t, wantFlags, step.Flags)
assert.EqualValues(t, wantFlags, step.Flags)
}

func TestMixin_UnmarshalExecuteLoginRegistryInsecureStep(t *testing.T) {
Expand All @@ -79,7 +79,7 @@ func TestMixin_UnmarshalExecuteLoginRegistryInsecureStep(t *testing.T) {
builder.Flag{Name: "u", Values: []string{"myuser"}},
}

assert.Equal(t, wantFlags, step.Flags)
assert.EqualValues(t, wantFlags, step.Flags)
}

func TestMixin_Execute_Login_Registry(t *testing.T) {
Expand Down

0 comments on commit 680b055

Please sign in to comment.