aboutsummaryrefslogtreecommitdiff
path: root/tests/test_pandora/test_transport.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pandora/test_transport.py')
-rw-r--r--tests/test_pandora/test_transport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_pandora/test_transport.py b/tests/test_pandora/test_transport.py
index 96dd40e..7eaaa6b 100644
--- a/tests/test_pandora/test_transport.py
+++ b/tests/test_pandora/test_transport.py
@@ -247,7 +247,7 @@ class TestTransportRequestPrep(TestCase):
247 247
248 248
249# All Cryptor implementations must pass these test cases unmodified 249# All Cryptor implementations must pass these test cases unmodified
250class CommonCryptorTestCases(object): 250class CommonCryptorTestCases:
251 251
252 def test_decrypt_invalid_padding(self): 252 def test_decrypt_invalid_padding(self):
253 with self.assertRaises(ValueError): 253 with self.assertRaises(ValueError):
@@ -288,7 +288,7 @@ class TestEncryptor(TestCase):
288 EXPECTED_TIME = 4111 288 EXPECTED_TIME = 4111
289 ENCODED_TIME = "31353037343131313539" 289 ENCODED_TIME = "31353037343131313539"
290 290
291 class NoopCrypto(object): 291 class NoopCrypto:
292 292
293 def __init__(self, key): 293 def __init__(self, key):
294 pass 294 pass