From 04703dca8a5b87b2d5ba33b9bdaf9ec7be4c2058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asif=20Saif=20Uddin=20=7B=22Auvi=22=3A=22=E0=A6=85?= =?UTF-8?q?=E0=A6=AD=E0=A6=BF=22=7D?= Date: Sun, 28 Sep 2025 10:09:37 +0600 Subject: [PATCH] Update tests/test_serializer.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/test_serializer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_serializer.py b/tests/test_serializer.py index 960c663f6..5dfbeb935 100644 --- a/tests/test_serializer.py +++ b/tests/test_serializer.py @@ -793,7 +793,7 @@ class TestWarningManyToMany(TestCase): model = ManyToManySource fields = '__all__' - # Instantiates with invalid data (not value for a ManyToMany field to force using the default) + # Instantiates with invalid data (no value for a ManyToMany field to force using the default) serializer = ManyToManySourceSerializer(data={ "name": "Invalid Example", })