From 1bd7eccfe0bbb43d0264b875ebb2f411d5653854 Mon Sep 17 00:00:00 2001 From: mo khan Date: Sun, 11 May 2025 21:29:26 -0600 Subject: refactor: rename variable paths to publicPaths --- test/integration/container_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/integration') diff --git a/test/integration/container_test.go b/test/integration/container_test.go index 055c57e..40bbe74 100644 --- a/test/integration/container_test.go +++ b/test/integration/container_test.go @@ -71,7 +71,7 @@ func TestContainer(t *testing.T) { client := &http.Client{Timeout: 5 * time.Second} - paths := []string{ + publicPaths := []string{ envoyEndpoint + "/", envoyEndpoint + "/application.js", envoyEndpoint + "/favicon.ico", @@ -85,7 +85,7 @@ func TestContainer(t *testing.T) { sparkleEndpoint + "/health", } - for _, path := range paths { + for _, path := range publicPaths { t.Run(path, func(t *testing.T) { request, err := http.NewRequestWithContext(ctx, http.MethodGet, path, nil) response, err := client.Do(request) -- cgit v1.2.3