File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ class TestMinimumTLSVersionValid(TestMinimumTLSVersion):
29
29
def _get_config_file_name (self ) -> str :
30
30
return super ()._get_config_file_name ("TLSv1_3" )
31
31
32
- def test_minimum_tls_version (self ):
32
+ def test_minimum_tls_version_valid (self ):
33
33
log_contents = self ._get_log_contents ()
34
34
self .assertIn ("Setting minimum TLS version to TLSv1_3" , log_contents )
35
35
36
36
class TestMinimumTLSVersionInvalid (TestMinimumTLSVersion ):
37
37
def _get_config_file_name (self ) -> str :
38
38
return super ()._get_config_file_name ("TLSv-1.3" )
39
39
40
- def test_minimum_tls_version (self ):
40
+ def test_minimum_tls_version_invalid (self ):
41
41
log_contents = self ._get_log_contents ()
42
42
self .assertIn ("Unrecognized value for TABPY_MINIMUM_TLS_VERSION" , log_contents )
43
43
self .assertIn ("Setting minimum TLS version to TLSv1_2" , log_contents )
You can’t perform that action at this time.
0 commit comments