Skip to content

Commit 9bf650c

Browse files
committed
Change runTest name to runRecoveryTest
1 parent 7e60a18 commit 9bf650c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/suite/graceful_recovery_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ var _ = Describe("Graceful Recovery test", Ordered, Label("nfr", "graceful-recov
5656
})
5757

5858
It("recovers when NGF container is restarted", func() {
59-
runTest(ngfContainerName, files, ns)
59+
runRecoveryTest(ngfContainerName, files, ns)
6060
})
6161

6262
It("recovers when nginx container is restarted", func() {
63-
runTest(nginxContainerName, files, ns)
63+
runRecoveryTest(nginxContainerName, files, ns)
6464
})
6565
})
6666

67-
func runTest(containerName string, files []string, ns *core.Namespace) {
67+
func runRecoveryTest(containerName string, files []string, ns *core.Namespace) {
6868
podNames, err := framework.GetReadyNGFPodNames(k8sClient, ngfNamespace, releaseName, timeoutConfig.GetTimeout)
6969
Expect(err).ToNot(HaveOccurred())
7070
Expect(podNames).ToNot(BeEmpty())

0 commit comments

Comments
 (0)