From 05aadd9fdec7cd82c9ee4b37089a29a1be289b83 Mon Sep 17 00:00:00 2001 From: tanvigour <60332928+tanvigour@users.noreply.github.com> Date: Tue, 8 Mar 2022 15:15:01 -0500 Subject: [PATCH] C# pubsub test fixes (#581) Signed-off-by: tanvigour --- pub_sub/csharp/http/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pub_sub/csharp/http/README.md b/pub_sub/csharp/http/README.md index 2165e603..000cdecb 100644 --- a/pub_sub/csharp/http/README.md +++ b/pub_sub/csharp/http/README.md @@ -45,6 +45,7 @@ expected_stdout_lines: - "Exited Dapr successfully" - "Exited App successfully" expected_stderr_lines: +working_dir: ./checkout output_match_mode: substring working_dir: ./checkout background: true @@ -52,7 +53,7 @@ sleep: 10 --> ```bash -dapr run --app-id checkout --components-path ../../../components/ -- dotnet run +dapr run --app-id checkout --components-path ../../../components/ -- dotnet run --project . ``` @@ -87,6 +88,7 @@ expected_stdout_lines: - "Exited Dapr successfully" - "Exited App successfully" expected_stderr_lines: +working_dir: ./order-processor output_match_mode: substring working_dir: ./order-processor background: true @@ -95,7 +97,7 @@ sleep: 10 ```bash -dapr run --app-id order-processor --components-path ../../../components/ --app-port 7001 -- dotnet run +dapr run --app-id order-processor --components-path ../../../components/ --app-port 7001 -- dotnet run --project . ```