Skip to content

Commit

Permalink
correct error messages
Browse files Browse the repository at this point in the history
Signed-off-by: Brooks Townsend <brooks@cosmonic.com>
  • Loading branch information
brooksmtownsend committed Aug 11, 2023
1 parent d031d82 commit 9f2e580
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/e2e_multitenant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ async fn test_basic_separation(client_info: &ClientInfo) -> anyhow::Result<()> {
&& ld.contract_id == "wasmcloud:httpserver"
}) {
anyhow::bail!(
"Link between echo actor and http provider should exist: {:#?}",
"Link between messaging actor and http provider should exist: {:#?}",
links
)
}
Expand All @@ -200,7 +200,7 @@ async fn test_basic_separation(client_info: &ClientInfo) -> anyhow::Result<()> {
&& ld.contract_id == "wasmcloud:messaging"
}) {
anyhow::bail!(
"Link between echo actor and http provider should exist: {:#?}",
"Link between messaging actor and nats provider should exist: {:#?}",
links
)
}
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e_upgrades.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async fn test_upgrade(client_info: &ClientInfo) {
.expect("Linkdef values should have an address")
}) {
anyhow::bail!(
"Link between echo actor and http provider should exist: {:#?}",
"Link between echo actor and http provider should exist on port 8080: {:#?}",
links
)
}
Expand Down Expand Up @@ -267,7 +267,7 @@ async fn test_upgrade(client_info: &ClientInfo) {
.expect("Linkdef values should have an address")
}) {
anyhow::bail!(
"Link between echo actor and http provider should exist: {:#?}",
"Link between echo actor and http provider should exist on port 8082: {:#?}",
links
)
}
Expand Down

0 comments on commit 9f2e580

Please sign in to comment.