Removed unnecessary trailing commas in tests.

This commit is contained in:
konsti 2023-08-22 12:42:57 +02:00 committed by GitHub
parent f1c0a3baf7
commit 48a1929ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 18 additions and 18 deletions

View file

@ -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):