From e7d60e86d0a43b40d4e722e8ee3bb4da05ec385c Mon Sep 17 00:00:00 2001 From: Jouko Virtanen Date: Mon, 9 Dec 2024 09:24:39 -0800 Subject: [PATCH] Fixed minor typo --- integration-tests/pkg/types/runtime_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/pkg/types/runtime_config.go b/integration-tests/pkg/types/runtime_config.go index 9d217d9abc..eae8699f7a 100644 --- a/integration-tests/pkg/types/runtime_config.go +++ b/integration-tests/pkg/types/runtime_config.go @@ -16,7 +16,7 @@ func (n *RuntimeConfig) Equal(other RuntimeConfig) bool { return n.Networking.ExternalIps.Enable == other.Networking.ExternalIps.Enable } -func (s *RuntimeConfig) GetRuntimeConfigStr() (string, error) { +func (n *RuntimeConfig) GetRuntimeConfigStr() (string, error) { yamlBytes, err := yaml.Marshal(s) if err != nil {