Skip to content

Commit

Permalink
switch Equals to Equal
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanHoladay committed Jun 5, 2024
1 parent e995e65 commit 9b457c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/bundle/deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ func TestFileVariableHandlers(t *testing.T) {

if tc.requireNoErr {
require.NoError(t, err)
require.Equals(t, tc.expected, overrideMap[componentName][chartName].FileValues[0])
require.Equal(t, tc.expected, overrideMap[componentName][chartName].FileValues[0])
} else {
require.Contains(t, err.Error(), "unable to find")
}
Expand Down

0 comments on commit 9b457c9

Please sign in to comment.