*: reflow comments to 80 characters
This reformats the entire Metropolis codebase to have comments no longer
than 80 characters, implementing CR/66.
This has been done half manually, as we don't have a good integration
between commentwrap/Bazel, but that can be implemented if we decide to
go for this tool/limit.
Change-Id: If1fff0b093ef806f5dc00551c11506e8290379d0
diff --git a/metropolis/test/e2e/main_test.go b/metropolis/test/e2e/main_test.go
index 0463fc4..6d9b1db 100644
--- a/metropolis/test/e2e/main_test.go
+++ b/metropolis/test/e2e/main_test.go
@@ -44,8 +44,8 @@
const (
// Timeout for the global test context.
//
- // Bazel would eventually time out the test after 900s ("large") if, for some reason,
- // the context cancellation fails to abort it.
+ // Bazel would eventually time out the test after 900s ("large") if, for
+ // some reason, the context cancellation fails to abort it.
globalTestTimeout = 600 * time.Second
// Timeouts for individual end-to-end tests of different sizes.
@@ -53,8 +53,10 @@
largeTestTimeout = 120 * time.Second
)
-// TestE2E is the main E2E test entrypoint for single-node freshly-bootstrapped E2E tests. It starts a full Metropolis node
-// in bootstrap mode and then runs tests against it. The actual tests it performs are located in the RunGroup subtest.
+// TestE2E is the main E2E test entrypoint for single-node freshly-bootstrapped
+// E2E tests. It starts a full Metropolis node in bootstrap mode and then runs
+// tests against it. The actual tests it performs are located in the RunGroup
+// subtest.
func TestE2E(t *testing.T) {
// Run pprof server for debugging
go func() {
@@ -102,8 +104,9 @@
}
debugClient := apb.NewNodeDebugServiceClient(grpcClient)
- // This exists to keep the parent around while all the children race
- // It currently tests both a set of OS-level conditions and Kubernetes Deployments and StatefulSets
+ // This exists to keep the parent around while all the children race.
+ // It currently tests both a set of OS-level conditions and Kubernetes
+ // Deployments and StatefulSets
t.Run("RunGroup", func(t *testing.T) {
t.Run("Get Kubernetes Debug Kubeconfig", func(t *testing.T) {
t.Parallel()