File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
cmd/kubeadm/app/phases/upgrade Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -444,8 +444,10 @@ func TestStaticPodControlPlane(t *testing.T) {
444
444
},
445
445
}
446
446
447
- for _ , rt := range tests {
447
+ for i := range tests {
448
+ rt := tests [i ]
448
449
t .Run (rt .description , func (t * testing.T ) {
450
+ t .Parallel ()
449
451
waiter := NewFakeStaticPodWaiter (rt .waitErrsToReturn )
450
452
pathMgr , err := NewFakeStaticPodPathManager (rt .moveFileFunc )
451
453
if err != nil {
@@ -762,8 +764,11 @@ func TestRenewCertsByComponent(t *testing.T) {
762
764
},
763
765
}
764
766
765
- for _ , test := range tests {
767
+ for i := range tests {
768
+ test := tests [i ]
766
769
t .Run (test .name , func (t * testing.T ) {
770
+ t .Parallel ()
771
+
767
772
// Setup up basic requities
768
773
tmpDir := testutil .SetupTempDir (t )
769
774
defer os .RemoveAll (tmpDir )
You can’t perform that action at this time.
0 commit comments