From ca55fc87e426faef9d664d13b90e1210fe598a0f Mon Sep 17 00:00:00 2001 From: Gemma Hou Date: Fri, 20 Oct 2023 15:11:52 +0000 Subject: [PATCH] Group http-log by test name-DCL resource --- pkg/test/resourcefixture/test_runner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/test/resourcefixture/test_runner.go b/pkg/test/resourcefixture/test_runner.go index 2ae24190ed..37587b00a9 100644 --- a/pkg/test/resourcefixture/test_runner.go +++ b/pkg/test/resourcefixture/test_runner.go @@ -49,6 +49,7 @@ func runTestCase(ctx context.Context, t *testing.T, fixture ResourceFixture, tes } t.Run(FormatTestName(fixture), func(t *testing.T) { t.Parallel() + ctx = test.WithContext(ctx, t) testCaseFunc(ctx, t, fixture) // note, this function, runTestCase(...) almost always returns before testCaseFunc(...) returns })