Skip to content

Commit

Permalink
Fix error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LJ authored and LJ committed Sep 24, 2024
1 parent 8c4431a commit 2bf5ad2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/groups.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ async fn group_member() -> Result<(), ApiError> {
user_id: user_id.clone(),
group_id: group_id.clone(),
};
let group_member: GroupMember = api_client.query(query).await?;
let group_member: GroupMember =
api_client.query(query).await?.expect("Group to exist");

dbg!(&group_member);

Expand Down

0 comments on commit 2bf5ad2

Please sign in to comment.