aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2016-01-25 19:15:55 -0800
committerMike Crute <mcrute@gmail.com>2016-01-25 19:15:55 -0800
commitf0d3189f1b8c886139332037911466ec2bce09eb (patch)
tree15a66a7f8c006b3093e23cc1eada8d3ffa365305
parentaef95e84ae59259e49adbe45b2c5327dab52d097 (diff)
downloadpydora-f0d3189f1b8c886139332037911466ec2bce09eb.tar.bz2
pydora-f0d3189f1b8c886139332037911466ec2bce09eb.tar.xz
pydora-f0d3189f1b8c886139332037911466ec2bce09eb.zip
Fix failing test
-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 1393b7d..5474a56 100644
--- a/tests/test_pandora/test_transport.py
+++ b/tests/test_pandora/test_transport.py
@@ -25,7 +25,7 @@ class TestTransport(TestCase):
25 client("method") 25 client("method")
26 26
27 client.transport._start_request.assert_has_calls([call("method")]) 27 client.transport._start_request.assert_has_calls([call("method")])
28 assert client.transport._start_request.call_count == 5 28 assert client.transport._start_request.call_count == 3
29 29
30 def test_call_should_not_retry_for_pandora_exceptions(self): 30 def test_call_should_not_retry_for_pandora_exceptions(self):
31 with self.assertRaises(PandoraException): 31 with self.assertRaises(PandoraException):