Skip to content

Commit

Permalink
chore: correct eg namespace (#4365)
Browse files Browse the repository at this point in the history
  • Loading branch information
zirain authored Sep 30, 2024
1 parent fe1e8bd commit 4b8c2f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -686,9 +686,9 @@ func createTagsQueryParam(tags map[string]string) (string, error) {
// CollectAndDump collects and dumps the cluster data for troubleshooting and log.
// This function should be call within t.Cleanup.
func CollectAndDump(t *testing.T, rest *rest.Config) {
result := tb.CollectResult(context.TODO(), rest, "", "envoy-gateway")
result := tb.CollectResult(context.TODO(), rest, "", "envoy-gateway-system")
for r, data := range result {
tlog.Logf(t, "filename: %s", r)
tlog.Logf(t, "data: \n%s", data)
tlog.Logf(t, "\nfilename: %s", r)
tlog.Logf(t, "\ndata: \n%s", data)
}
}

0 comments on commit 4b8c2f5

Please sign in to comment.