author | Alberto Bertogli
<albertito@blitiri.com.ar> 2014-10-05 20:45:13 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2014-10-05 20:45:13 UTC |
parent | 2af6c0892cf34ca25e66cc7be328b75d6444970c |
tests/run_tests | +2 | -2 |
diff --git a/tests/run_tests b/tests/run_tests index 23bfadf..85531ee 100755 --- a/tests/run_tests +++ b/tests/run_tests @@ -404,8 +404,8 @@ class TrickyRequests(TestCase): certfile=self.client.cert_path()) # We don't check the cipher itself, as it depends on the environment, - # but we should be using > 128 bit secrets. - self.assertTrue(sock.cipher()[2] > 128) + # but we should be using >= 128 bit secrets. + self.assertTrue(sock.cipher()[2] >= 128) server_cert = ssl.DER_cert_to_PEM_cert( sock.getpeercert(binary_form=True))