Skip to content

Commit 9bc96c2

Browse files
committed
Fix test
Signed-off-by: Anton Troshin <[email protected]>
1 parent 376690b commit 9bc96c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/standalone/run_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func TestStandaloneRun(t *testing.T) {
5353
output, err := cmdRun(path, "--dapr-internal-grpc-port", "9999", "--", "bash", "-c", "echo test")
5454
t.Log(output)
5555
require.NoError(t, err, "run failed")
56-
assert.Contains(t, output, "Internal gRPC server is running on port 9999")
56+
assert.Contains(t, output, "Internal gRPC server is running on :9999")
5757
assert.Contains(t, output, "Exited App successfully")
5858
assert.Contains(t, output, "Exited Dapr successfully")
5959
assert.NotContains(t, output, "Could not update sidecar metadata for cliPID")

0 commit comments

Comments
 (0)