We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b731d15 commit 0f82c0dCopy full SHA for 0f82c0d
1 file changed
unittests/test_async_delete.py
@@ -296,18 +296,3 @@ def test_async_delete_helper_methods(self):
296
"Product",
297
"get_object_name should work with model class",
298
)
299
-
300
- def test_async_delete_mapping_preserved(self):
301
- """
302
- Test that the mapping attribute is preserved on async_delete instances.
303
304
- This ensures backwards compatibility for code that might access the mapping.
305
306
- async_del = async_delete()
307
308
- # Verify mapping exists and has expected keys
309
- self.assertIsNotNone(async_del.mapping)
310
- self.assertIn("Product", async_del.mapping)
311
- self.assertIn("Product_Type", async_del.mapping)
312
- self.assertIn("Engagement", async_del.mapping)
313
- self.assertIn("Test", async_del.mapping)
0 commit comments