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/serializers | |
| parent | f1c0a3baf74baae94a0d4137782e15edcdf54a7e (diff) | |
Removed unnecessary trailing commas in tests.
Diffstat (limited to 'tests/serializers')
| -rw-r--r-- | tests/serializers/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/serializers/tests.py b/tests/serializers/tests.py index 58bd74d326..6ca0c15e04 100644 --- a/tests/serializers/tests.py +++ b/tests/serializers/tests.py @@ -73,7 +73,7 @@ class SerializerRegistrationTests(SimpleTestCase): all_formats = set(serializers.get_serializer_formats()) public_formats = set(serializers.get_public_serializer_formats()) - self.assertIn("xml", all_formats), + self.assertIn("xml", all_formats) self.assertIn("xml", public_formats) self.assertIn("json2", all_formats) |
