C# pubsub test fixes (#581)

Signed-off-by: tanvigour <tanvi.gour@gmail.com>
This commit is contained in:
tanvigour 2022-03-08 15:15:01 -05:00 committed by GitHub
parent a5b8b58ed3
commit 05aadd9fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -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 .
```
<!-- END_STEP -->
@ -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 .
```
<!-- END_STEP -->