mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
test: dont use is_ok(), propagate err
This commit is contained in:
parent
59f9096fb6
commit
f350bc0ea8
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ async fn test_workspace_creation_and_deletion() {
|
|||
let workspace_list_after = client.fetch_owned_workspaces().await?;
|
||||
|
||||
assert_or_err!(workspace_list_before.contains(&workspace_name));
|
||||
assert_or_err!(res.is_ok(), "failed deleting workspace");
|
||||
res?;
|
||||
assert_or_err!(workspace_list_after.contains(&workspace_name) == false);
|
||||
|
||||
Ok(())
|
||||
|
@ -103,7 +103,7 @@ async fn test_attach_after_leave() {
|
|||
// TODO this is very server specific! disconnect may be instant or caught with next
|
||||
// keepalive, let's arbitrarily say that after 20 seconds we should have been disconnected
|
||||
tokio::time::sleep(std::time::Duration::from_secs(20)).await;
|
||||
assert_or_err!(client.attach_workspace(&workspace.id()).await.is_ok());
|
||||
client.attach_workspace(&workspace.id()).await?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue