diff options
| author | konsti <konstin@mailbox.org> | 2023-08-22 12:42:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-22 12:42:57 +0200 |
| commit | 48a1929ca050f1333927860ff561f6371706968a (patch) | |
| tree | 6678df1205fd4b589fd268d20c841b85d1406c4d /tests/admin_utils | |
| parent | f1c0a3baf74baae94a0d4137782e15edcdf54a7e (diff) | |
Removed unnecessary trailing commas in tests.
Diffstat (limited to 'tests/admin_utils')
| -rw-r--r-- | tests/admin_utils/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_utils/tests.py b/tests/admin_utils/tests.py index cbe6b8bb1d..0adee38afa 100644 --- a/tests/admin_utils/tests.py +++ b/tests/admin_utils/tests.py @@ -325,7 +325,7 @@ class UtilsTests(SimpleTestCase): ) msg = "Unable to lookup 'nonexistent' on Article or ArticleForm" with self.assertRaisesMessage(AttributeError, msg): - label_for_field("nonexistent", Article, form=ArticleForm()), + label_for_field("nonexistent", Article, form=ArticleForm()) def test_label_for_property(self): class MockModelAdmin: |
