We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d755f0f + 998d6bf commit 51ac34aCopy full SHA for 51ac34a
crates/common/axum_tls/src/acceptor.rs
@@ -171,7 +171,6 @@ mod tests {
171
}
172
173
#[tokio::test]
174
- #[ignore]
175
async fn acceptor_rejects_untrusted_client_certificates() {
176
let permitted_certificate =
177
rcgen::generate_simple_self_signed(vec!["not-my-client".into()]).unwrap();
@@ -191,7 +190,7 @@ mod tests {
191
190
.await
192
.unwrap_err();
193
println!("{}", err);
194
- crate::error_matching::assert_error_matches(err, rustls::AlertDescription::UnknownCA);
+ crate::error_matching::assert_error_matches(err, rustls::AlertDescription::DecryptError);
195
196
197
0 commit comments