Skip to content

Commit 628c691

Browse files
committed
bump
Signed-off-by: Pavel Okhlopkov <[email protected]>
1 parent 590a3e1 commit 628c691

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

common-hooks/tls-certificate/internal_tls_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ metadata:
488488
`,
489489
}})
490490

491-
values := mock.NewPatchableValuesCollectorMock(t)
491+
values := mock.NewOutputPatchableValuesCollectorMock(t)
492492

493493
values.GetMock.When("global.discovery.clusterDomain").Then(gjson.Result{Type: gjson.String, Str: "cluster.local"})
494494
values.GetMock.When("global.modules.publicDomainTemplate").Then(gjson.Result{Type: gjson.String, Str: "%s.127.0.0.1.sslip.io"})

testing/framework/init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ func NewHookFramework(t *testing.T, config *pkg.HookConfig, f pkg.ReconcileFunc)
3131
ReconcileFunc: f,
3232
HookInput: &pkg.HookInput{
3333
Snapshots: mock.NewSnapshotsMock(t),
34-
Values: mock.NewPatchableValuesCollectorMock(t),
35-
ConfigValues: mock.NewPatchableValuesCollectorMock(t),
34+
Values: mock.NewOutputPatchableValuesCollectorMock(t),
35+
ConfigValues: mock.NewOutputPatchableValuesCollectorMock(t),
3636
PatchCollector: mock.NewPatchCollectorMock(t),
3737
MetricsCollector: mock.NewMetricsCollectorMock(t),
3838
DC: mock.NewDependencyContainerMock(t),

testing/helpers/hook_input.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
func NewHookInput(t *testing.T) *pkg.HookInput {
1313
return &pkg.HookInput{
1414
Snapshots: mock.NewSnapshotsMock(t),
15-
Values: mock.NewPatchableValuesCollectorMock(t),
16-
ConfigValues: mock.NewPatchableValuesCollectorMock(t),
15+
Values: mock.NewOutputPatchableValuesCollectorMock(t),
16+
ConfigValues: mock.NewOutputPatchableValuesCollectorMock(t),
1717
PatchCollector: mock.NewPatchCollectorMock(t),
1818
MetricsCollector: mock.NewMetricsCollectorMock(t),
1919
DC: mock.NewDependencyContainerMock(t),

0 commit comments

Comments
 (0)