From ad2de7fdd01d6d8fd200548362e26d03cd67692c Mon Sep 17 00:00:00 2001 From: Alex Sherman Date: Wed, 28 Apr 2021 19:30:07 +0500 Subject: [PATCH] Remove outdated test --- apps/epp_proxy/test/tls_client_SUITE.erl | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/apps/epp_proxy/test/tls_client_SUITE.erl b/apps/epp_proxy/test/tls_client_SUITE.erl index 2a983f3..dc6c13f 100644 --- a/apps/epp_proxy/test/tls_client_SUITE.erl +++ b/apps/epp_proxy/test/tls_client_SUITE.erl @@ -13,8 +13,7 @@ long_message_test_case/1, invalid_command_test_case/1, missing_command_test_case/1, - error_test_case/1, - revoked_cert_test_case/1]). + error_test_case/1]). all() -> [frame_size_test_case, @@ -25,8 +24,7 @@ all() -> long_message_test_case, invalid_command_test_case, missing_command_test_case, - error_test_case, - revoked_cert_test_case]. + error_test_case]. init_per_suite(Config) -> application:ensure_all_started(epp_proxy), @@ -209,14 +207,6 @@ error_test_case(Config) -> "Command syntax error."), ok. -revoked_cert_test_case(Config) -> - Options = proplists:get_value(revoked_options, Config), - {error, Error} = ssl:connect("localhost", 1443, Options, 2000), - {tls_alert, - {certificate_revoked, - "received CLIENT ALERT: Fatal - Certificate Revoked"}} = Error, - ok. - %% Helper functions: length_of_data(Data) -> EPPEnvelope = binary:part(Data, {0, 4}),