Skip to content

Commit 443a824

Browse files
committed
Fix a test
1 parent ae49bd9 commit 443a824

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

django/thunderstore/frontend/tests/services/test_thumbnail_service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def test_get_or_create_thumbnail_success(community, dummy_cover_image):
2222

2323

2424
@pytest.mark.django_db
25-
def test_get_or_create_thumbnail_exception(community, dummy_cover_image):
25+
def test_get_or_create_thumbnail_exception(community, dummy_cover_image, settings):
26+
settings.ALWAYS_RAISE_EXCEPTIONS = False
2627
community.cover_image = dummy_cover_image
2728
community.save()
2829

0 commit comments

Comments
 (0)