From 9db223f54b2fb88bfc46cbee510c95cef51171c4 Mon Sep 17 00:00:00 2001 From: "R.B. Boyer" <4903+rboyer@users.noreply.github.com> Date: Thu, 20 Apr 2023 16:49:08 -0500 Subject: [PATCH] fix the linter (#17077) --- .../test/consul_envoy_version/consul_envoy_version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/consul-container/test/consul_envoy_version/consul_envoy_version.go b/test/integration/consul-container/test/consul_envoy_version/consul_envoy_version.go index 3f56fa4ea6..72c4964ffb 100644 --- a/test/integration/consul-container/test/consul_envoy_version/consul_envoy_version.go +++ b/test/integration/consul-container/test/consul_envoy_version/consul_envoy_version.go @@ -34,7 +34,7 @@ func main() { sort.Sort(sort.Reverse(sort.StringSlice(cev.EnvoyVersions))) ceVersions := consulEnvoyVersions{ - ConsulVersion: string(cVersion), + ConsulVersion: cVersion, EnvoyVersions: cev.EnvoyVersions, } output, err := json.Marshal(ceVersions)