Skip to content

Commit 4f8df9e

Browse files
gowthamsk-armtgonzalezorlandoarm
authored andcommitted
e2e_tests: Rename handshake test to include key type
Signed-off-by: Gowtham Suresh Kumar <[email protected]>
1 parent c05b728 commit 4f8df9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

parsec-openssl-provider-shared/e2e_tests/tests/handshake.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn test_handshake_client_authentication_with_no_client_settings() {
8484

8585
#[should_panic]
8686
#[test]
87-
fn test_handshake_client_authentication_with_no_client_key() {
87+
fn test_handshake_client_authentication_with_no_rsa_client_key() {
8888
let listener = TcpListener::bind("127.0.0.1:0").unwrap();
8989
let addr = listener.local_addr().unwrap();
9090

@@ -106,7 +106,7 @@ fn test_handshake_client_authentication_with_no_client_key() {
106106
}
107107

108108
#[test]
109-
fn test_handshake_client_authentication() {
109+
fn test_handshake_client_authentication_rsa() {
110110
let socket = TcpListener::bind("127.0.0.1:0").unwrap();
111111
let addr = socket.local_addr().unwrap();
112112

@@ -156,7 +156,7 @@ fn test_handshake_client_authentication_with_fake_ca() {
156156
// key, the key management match function should report an error about the mismatched private key and
157157
// public key from the x509 certificate.
158158
#[test]
159-
fn test_client_with_mismatched_key_and_certificate() {
159+
fn test_client_with_mismatched_rsa_key_and_certificate() {
160160
let mut ctx_builder = SslContext::builder(SslMethod::tls_client()).unwrap();
161161

162162
ctx_builder

0 commit comments

Comments
 (0)