aboutsummaryrefslogtreecommitdiff
path: root/tests/test_pandora/test_errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pandora/test_errors.py')
-rw-r--r--tests/test_pandora/test_errors.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_pandora/test_errors.py b/tests/test_pandora/test_errors.py
index 778771a..d9df41f 100644
--- a/tests/test_pandora/test_errors.py
+++ b/tests/test_pandora/test_errors.py
@@ -4,7 +4,6 @@ from pandora.errors import InternalServerError, PandoraException
4 4
5 5
6class TestPandoraExceptionConstructionFromErrorCode(TestCase): 6class TestPandoraExceptionConstructionFromErrorCode(TestCase):
7
8 def test_it_returns_specific_error_class_if_possible(self): 7 def test_it_returns_specific_error_class_if_possible(self):
9 error = PandoraException.from_code(0, "Test Message") 8 error = PandoraException.from_code(0, "Test Message")
10 self.assertIsInstance(error, InternalServerError) 9 self.assertIsInstance(error, InternalServerError)