aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-10-07 22:44:02 +0000
committerMike Crute <mike@crute.us>2017-10-07 22:44:02 +0000
commit0e9e780dafe201e60c76e1b29264afd67349c2d1 (patch)
tree0034d4dc8921da8e9c65f7cadef3a1e2549518fd /tests
parentd302a17de6841f5f6a05c193bb2c8406a674580d (diff)
downloadpydora-0e9e780dafe201e60c76e1b29264afd67349c2d1.tar.bz2
pydora-0e9e780dafe201e60c76e1b29264afd67349c2d1.tar.xz
pydora-0e9e780dafe201e60c76e1b29264afd67349c2d1.zip
Fix blowfish test and travis
Diffstat (limited to 'tests')
-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()