Skip to content

Commit 5e32f89

Browse files
committed
refactor: change method name
1 parent 9ed9d05 commit 5e32f89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/chart/chart_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func TestChart_Build(t *testing.T) {
9292
assert.Len(t, specs, 1)
9393
}
9494

95-
func TestChart_GetSet(t *testing.T) {
95+
func TestChart_Get(t *testing.T) {
9696
chrt := &Chart{
9797
ID: uuid.Must(uuid.NewV7()),
9898
Namespace: "default",

pkg/secret/secret_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/stretchr/testify/assert"
99
)
1010

11-
func TestSecret_GetSet(t *testing.T) {
11+
func TestSecret_Get(t *testing.T) {
1212
scrt := &Secret{
1313
ID: uuid.Must(uuid.NewV7()),
1414
Namespace: "default",

pkg/spec/spec_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func TestBind(t *testing.T) {
5959
assert.True(t, IsBound(bind, scrt))
6060
}
6161

62-
func TestMeta_GetSet(t *testing.T) {
62+
func TestMeta_Get(t *testing.T) {
6363
meta := &Meta{
6464
ID: uuid.Must(uuid.NewV7()),
6565
Kind: faker.Word(),

0 commit comments

Comments
 (0)