From 2a2d33b2b112f87ca49e1af0e359e5a4781aa7cf Mon Sep 17 00:00:00 2001 From: ldsdsy Date: Tue, 14 Jun 2022 10:15:40 +0800 Subject: [PATCH] Modify annotation syntax errors --- test/e2e/windows/volumes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/windows/volumes.go b/test/e2e/windows/volumes.go index 069c690c34e..87a251b730c 100644 --- a/test/e2e/windows/volumes.go +++ b/test/e2e/windows/volumes.go @@ -145,7 +145,7 @@ func doReadWriteReadOnlyTest(f *framework.Framework, source v1.VolumeSource, vol _, stderr, _ := f.ExecCommandInContainerWithFullOutput(podName, containerName, writecmd...) framework.ExpectEqual(stderr, "Access is denied.") - ginkgo.By("verifying that pod can read from the the volume that is readonly") + ginkgo.By("verifying that pod can read from a volume that is readonly") readcmd := []string{"cmd", "/c", "type", filePath} readout, readerr, err := f.ExecCommandInContainerWithFullOutput(podName, containerName, readcmd...) readmsg := fmt.Sprintf("cmd: %v, stdout: %q, stderr: %q", readcmd, readout, readerr)