From 822190c29703d546d2018cf14138012f9b4845be Mon Sep 17 00:00:00 2001 From: joshvanl Date: Fri, 16 Aug 2024 08:59:05 -0500 Subject: [PATCH] Fix string match in standalone e2e test Signed-off-by: joshvanl --- tests/e2e/standalone/run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/standalone/run_test.go b/tests/e2e/standalone/run_test.go index e8caa40a8..e073ab897 100644 --- a/tests/e2e/standalone/run_test.go +++ b/tests/e2e/standalone/run_test.go @@ -54,7 +54,7 @@ func TestStandaloneRun(t *testing.T) { output, err := cmdRun(path, "--dapr-internal-grpc-port", "9999", "--", "bash", "-c", "echo test") t.Log(output) require.NoError(t, err, "run failed") - assert.Contains(t, output, "Internal gRPC server is running on port :9999") + assert.Contains(t, output, "Internal gRPC server is running on :9999") assert.Contains(t, output, "Exited App successfully") assert.Contains(t, output, "Exited Dapr successfully") assert.NotContains(t, output, "Could not update sidecar metadata for cliPID")