From 74f22885dc45e2866985fe7179103e1000382415 Mon Sep 17 00:00:00 2001 From: Nayana Bidari Date: Wed, 22 May 2024 15:08:44 -0700 Subject: [PATCH] Fix typos in test. PiperOrigin-RevId: 636307763 --- test/e2e/integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/integration_test.go b/test/e2e/integration_test.go index 7bfdbb034..bcc24b80c 100644 --- a/test/e2e/integration_test.go +++ b/test/e2e/integration_test.go @@ -233,8 +233,8 @@ func TestConnectToSelf(t *testing.T) { d := dockerutil.MakeContainer(ctx, t) defer d.CleanUp(ctx) - // Creates server that replies "server" and exists. Sleeps at the end because - // 'docker exec' gets killed if the init process exists before it can finish. + // Creates server that replies "server" and exits. Sleeps at the end because + // 'docker exec' gets killed if the init process exits before it can finish. if err := d.Spawn(ctx, dockerutil.RunOpts{ Image: "basic/ubuntu", }, "/bin/sh", "-c", "echo server | nc -l -p 8080 && sleep 1"); err != nil {