Skip to content

Commit 0f82c0d

Browse files
remove obsolete test
1 parent b731d15 commit 0f82c0d

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

unittests/test_async_delete.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -296,18 +296,3 @@ def test_async_delete_helper_methods(self):
296296
"Product",
297297
"get_object_name should work with model class",
298298
)
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

Comments
 (0)