diff --git a/tests/results_backends_tests.py b/tests/results_backends_tests.py index f628ebdbf975a..041ebd09f190b 100644 --- a/tests/results_backends_tests.py +++ b/tests/results_backends_tests.py @@ -66,7 +66,7 @@ def test_s3_cache_get_does_not_exist(self): self.assertEquals(result, None) self.assertFalse(self.mock_s3_client.download_fileobj.called) - def test_s3_cache_get_s3_exception(self): + def test_s3_cache_get_exception(self): self.mock_s3_client.download_fileobj.side_effect = Exception('Something bad happened') result = self.s3_cache.get('test-key')