Skip to content

Commit 9d0bc4b

Browse files
committed
Fix golint failures of e2e/framework/util.go - part1
This is a part of a series for fixing golint failures for util.go. - fixes `should not use dot imports` about `ginkgo` and `gomega` - fixes golint failures from top of file to line 1394 at original util.go This fixes golint failures of the following file: - test/e2e/framework/util.go This changes following files because of change function name in above file. - test/e2e/e2e.go - test/e2e/network/network_tiers.go - test/e2e/network/service.go
1 parent b359b6b commit 9d0bc4b

File tree

4 files changed

+110
-72
lines changed

4 files changed

+110
-72
lines changed

test/e2e/e2e.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ func RunE2ETests(t *testing.T) {
237237
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, fmt.Sprintf("junit_%v%02d.xml", framework.TestContext.ReportPrefix, config.GinkgoConfig.ParallelNode))))
238238
}
239239
}
240-
klog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunId, config.GinkgoConfig.ParallelNode)
240+
klog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunID, config.GinkgoConfig.ParallelNode)
241241

242242
ginkgo.RunSpecsWithDefaultAndCustomReporters(t, "Kubernetes e2e suite", r)
243243
}

0 commit comments

Comments
 (0)