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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pandora/test_transport.py b/tests/test_pandora/test_transport.py
index 4717617..08e3292 100644
--- a/tests/test_pandora/test_transport.py
+++ b/tests/test_pandora/test_transport.py
@@ -271,7 +271,7 @@ class TestPurePythonBlowfishCryptor(TestCase, CommonCryptorTestCases):
271 271
272 def setUp(self): 272 def setUp(self):
273 # Ugh... blowfish can't even be *imported* in python2 273 # Ugh... blowfish can't even be *imported* in python2
274 if sys.version_info.major == 2: 274 if not t.blowfish:
275 t.blowfish = Mock() 275 t.blowfish = Mock()
276 276
277 self.cipher = Mock() 277 self.cipher = Mock()