Remove Python version check

We require Python 3 now, so no need for this check.
This commit is contained in:
Pierre Ossman 2021-01-29 12:58:26 +01:00
parent adc278657a
commit a82eb10b48
1 changed files with 66 additions and 67 deletions

View File

@ -115,7 +115,6 @@ class ProxyRequestHandlerTestCase(unittest.TestCase):
self.assertEqual(self.handler.server.target_host, "somehost")
self.assertEqual(self.handler.server.target_port, "blah")
if sys.version_info >= (2,7):
def test_asymmetric_jws_token_plugin(self):
key = jwt.JWK()
private_key = open("./tests/fixtures/private.pem", "rb").read()