From 4998df7738edaaca4a846714737cb74e27157fd6 Mon Sep 17 00:00:00 2001 From: WN Date: Tue, 25 Jun 2024 21:37:28 +0200 Subject: [PATCH] ruff --- tests/test_ssl.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_ssl.py b/tests/test_ssl.py index 34c8aaf5..e61f0845 100644 --- a/tests/test_ssl.py +++ b/tests/test_ssl.py @@ -519,7 +519,6 @@ def test_set_cipher_list(self, context, cipher_string): assert "AES128-SHA" in conn.get_cipher_list() - def test_set_cipher_wrong_type(self, context): """ `Context.set_cipher_list` raises `TypeError` when @@ -527,7 +526,7 @@ def test_set_cipher_wrong_type(self, context): """ with pytest.raises(TypeError): context.set_cipher_list(object()) - + def test_set_ciphersuites_wrong_type(self, context): """ `Context.set_ciphersuites` raises `TypeError` when @@ -536,7 +535,6 @@ def test_set_ciphersuites_wrong_type(self, context): with pytest.raises(TypeError): context.set_ciphersuites(object()) - @pytest.mark.flaky(reruns=2) def test_set_cipher_list_no_cipher_match(self, context): """