From 4121cf9df313ee111c01fde1f255d010c8d941cd Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 14 Feb 2025 19:01:57 +0100 Subject: all: remove loop variables scoping --- prog/mutation_test.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'prog/mutation_test.go') diff --git a/prog/mutation_test.go b/prog/mutation_test.go index 14e80a73b..1cd18656e 100644 --- a/prog/mutation_test.go +++ b/prog/mutation_test.go @@ -136,7 +136,6 @@ func TestMutateArgument(t *testing.T) { target := initTargetTest(t, "test", "64") for ti, test := range tests { - test := test t.Run(fmt.Sprint(ti), func(t *testing.T) { t.Parallel() rs, ct, p, goal, err := buildTestContext(test, target) @@ -410,7 +409,6 @@ func runMutationTests(t *testing.T, tests [][2]string, valid bool) { } target := initTargetTest(t, "test", "64") for ti, test := range tests { - test := test t.Run(fmt.Sprint(ti), func(t *testing.T) { t.Parallel() rs, ct, p, goal, err := buildTestContext(test, target) -- cgit mrf-deployment