Skip to content

Commit 696c837

Browse files
committed
fix test
Signed-off-by: Anton Troshin <[email protected]>
1 parent dbfa27a commit 696c837

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/self_hosted_e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GOARCH: ${{ matrix.target_arch }}
3939
GOPROXY: https://proxy.golang.org
4040
ARCHIVE_OUTDIR: dist/archives
41-
DAPR_RUNTIME_PINNED_VERSION: "1.13.0-rc.2"
41+
DAPR_RUNTIME_PINNED_VERSION: "1.13.5"
4242
DAPR_DASHBOARD_PINNED_VERSION: 0.14.0
4343
DAPR_RUNTIME_LATEST_STABLE_VERSION: ""
4444
DAPR_DASHBOARD_LATEST_STABLE_VERSION: ""

tests/e2e/standalone/run_test.go

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

0 commit comments

Comments
 (0)