summaryrefslogtreecommitdiff
path: root/tests/file_storage
diff options
context:
space:
mode:
authorkonsti <konstin@mailbox.org>2023-08-22 12:42:57 +0200
committerGitHub <noreply@github.com>2023-08-22 12:42:57 +0200
commit48a1929ca050f1333927860ff561f6371706968a (patch)
tree6678df1205fd4b589fd268d20c841b85d1406c4d /tests/file_storage
parentf1c0a3baf74baae94a0d4137782e15edcdf54a7e (diff)
Removed unnecessary trailing commas in tests.
Diffstat (limited to 'tests/file_storage')
-rw-r--r--tests/file_storage/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/file_storage/tests.py b/tests/file_storage/tests.py
index 7fb57fbce4..6ff56ae169 100644
--- a/tests/file_storage/tests.py
+++ b/tests/file_storage/tests.py
@@ -94,7 +94,7 @@ class GetStorageClassTests(SimpleTestCase):
def test_deprecation_warning(self):
msg = GET_STORAGE_CLASS_DEPRECATED_MSG
with self.assertRaisesMessage(RemovedInDjango51Warning, msg):
- get_storage_class("django.core.files.storage.FileSystemStorage"),
+ get_storage_class("django.core.files.storage.FileSystemStorage")
class FileSystemStorageTests(unittest.TestCase):