diff options
| -rw-r--r-- | test/integration/container_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
