From a7a1f5871b2a44afc2c01f2201822536c2035cdd Mon Sep 17 00:00:00 2001 From: Vy Ta Date: Wed, 27 Feb 2019 10:01:46 -0800 Subject: [PATCH] poll_interval to pollInterval --- test/e2e/windows/hybrid_network.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/windows/hybrid_network.go b/test/e2e/windows/hybrid_network.go index 2e87bb7b651..ba2d4a6a67f 100644 --- a/test/e2e/windows/hybrid_network.go +++ b/test/e2e/windows/hybrid_network.go @@ -71,9 +71,9 @@ var _ = SIGDescribe("Hybrid cluster network", func() { }) var ( - duration = "10s" - poll_interval = "1s" - timeout = 10 // seconds + duration = "10s" + pollInterval = "1s" + timeout = 10 // seconds ) func assertConsistentConnectivity(f *framework.Framework, podName string, os string, cmd []string) { @@ -81,7 +81,7 @@ func assertConsistentConnectivity(f *framework.Framework, podName string, os str By(fmt.Sprintf("checking connectivity of %s-container in %s", os, podName)) _, _, err := f.ExecCommandInContainerWithFullOutput(podName, os+"-container", cmd...) return err - }, duration, poll_interval).ShouldNot(HaveOccurred()) + }, duration, pollInterval).ShouldNot(HaveOccurred()) } func linuxCheck(address string, port int) []string {