aboutsummaryrefslogtreecommitdiffstats
path: root/prog/mutation_test.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-02-14 19:01:57 +0100
committerTaras Madan <tarasmadan@google.com>2025-02-17 08:18:57 +0000
commit4121cf9df313ee111c01fde1f255d010c8d941cd (patch)
treedcd0d104c8c35997103297dfb7dc1f0de6b77b8e /prog/mutation_test.go
parent9f05da3db0234203729d2ad179ab5a2f72bf607f (diff)
all: remove loop variables scoping
Diffstat (limited to 'prog/mutation_test.go')
-rw-r--r--prog/mutation_test.go2
1 files changed, 0 insertions, 2 deletions
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)