Skip to content

Commit

Permalink
Derive Clone for service_provider::Error (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonweeks authored Jan 15, 2025
1 parent 9a7134c commit d29af3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service_provider/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn reduce_xml_to_signed<T>(xml_str: &str, _keys: &Vec<T>) -> Result<String, Erro
Ok(String::from(xml_str))
}

#[derive(Debug, Error, PartialEq)]
#[derive(Clone, Debug, Error, PartialEq)]
pub enum Error {
#[error(
"SAML response destination does not match SP ACS URL. {:?} != {:?}",
Expand Down

0 comments on commit d29af3a

Please sign in to comment.