Skip to content

Commit

Permalink
Refactor test_storage.py to improve code organization and import stat…
Browse files Browse the repository at this point in the history
…ements
  • Loading branch information
Krystof Beuermann committed Feb 20, 2024
1 parent 345bc83 commit 31ac736
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_storage.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from io import BytesIO
import unittest
from io import BytesIO
from unittest import mock

import django
from django.core.files.base import File
from django.core.files.storage import Storage
from django.test import TestCase
from django.test import TestCase, override_settings

from health_check.contrib.s3boto3_storage.backends import S3Boto3StorageHealthCheck
from django.test import override_settings
from django.core.files.base import File
from health_check.exceptions import ServiceUnavailable
from health_check.storage.backends import (
DefaultFileStorageHealthCheck,
Expand Down

0 comments on commit 31ac736

Please sign in to comment.