Skip to content

Commit

Permalink
Merge pull request #3382 from jarhodes314/refactor/unignore-client-ce…
Browse files Browse the repository at this point in the history
…rt-test

re-enable client certificate test
  • Loading branch information
jarhodes314 authored Feb 6, 2025
2 parents d755f0f + 998d6bf commit 51ac34a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/common/axum_tls/src/acceptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ mod tests {
}

#[tokio::test]
#[ignore]
async fn acceptor_rejects_untrusted_client_certificates() {
let permitted_certificate =
rcgen::generate_simple_self_signed(vec!["not-my-client".into()]).unwrap();
Expand All @@ -191,7 +190,7 @@ mod tests {
.await
.unwrap_err();
println!("{}", err);
crate::error_matching::assert_error_matches(err, rustls::AlertDescription::UnknownCA);
crate::error_matching::assert_error_matches(err, rustls::AlertDescription::DecryptError);
}

#[tokio::test]
Expand Down

0 comments on commit 51ac34a

Please sign in to comment.