@@ -528,7 +528,7 @@ func runVolumeTesterPod(client clientset.Interface, config TestConfig, podSuffix
528
528
return clientPod , nil
529
529
}
530
530
531
- func testVolumeContent (f * framework.Framework , client clientset. Interface , pod * v1.Pod , fsGroup * int64 , fsType string , tests []Test ) {
531
+ func testVolumeContent (f * framework.Framework , pod * v1.Pod , fsGroup * int64 , fsType string , tests []Test ) {
532
532
ginkgo .By ("Checking that text file contents are perfect." )
533
533
for i , test := range tests {
534
534
if test .Mode == v1 .PersistentVolumeBlock {
@@ -581,7 +581,7 @@ func TestVolumeClient(f *framework.Framework, client clientset.Interface, config
581
581
582
582
}
583
583
framework .ExpectNoError (e2epod .WaitForPodRunningInNamespace (client , clientPod ))
584
- testVolumeContent (f , client , clientPod , fsGroup , fsType , tests )
584
+ testVolumeContent (f , clientPod , fsGroup , fsType , tests )
585
585
}
586
586
587
587
// InjectContent inserts index.html with given content into given volume. It does so by
@@ -621,7 +621,7 @@ func InjectContent(f *framework.Framework, client clientset.Interface, config Te
621
621
622
622
// Check that the data have been really written in this pod.
623
623
// This tests non-persistent volume types
624
- testVolumeContent (f , client , injectorPod , fsGroup , fsType , tests )
624
+ testVolumeContent (f , injectorPod , fsGroup , fsType , tests )
625
625
}
626
626
627
627
// CreateGCEVolume creates PersistentVolumeSource for GCEVolume.
0 commit comments