Skip to content

Commit

Permalink
Fix return type in oidc_test
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Salinas authored and Daniel Salinas committed Jan 17, 2025
1 parent 585ec15 commit cf35f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk/src/oidc/cross_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ mod tests {
&self,
client: Client,
) -> Result<SessionTokens, SessionCallbackError> {
crate::authentication::SessionTokens::Oidc(self.tokens.clone())
Ok(crate::authentication::SessionTokens::Oidc(self.tokens.clone()))
}
}

Expand Down

0 comments on commit cf35f6e

Please sign in to comment.