Changes between Version 2 and Version 3 of Ticket #35356, comment 2


Ignore:
Timestamp:
Apr 5, 2024, 8:28:55 PM (6 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35356, comment 2

    v2 v3  
    1818 class RelatedItem(models.Model):
    1919diff --git a/tests/defer_regress/tests.py b/tests/defer_regress/tests.py
    20 index 10100e348d..d8b2186f0a 100644
     20index 10100e348d..98473e0c4f 100644
    2121--- a/tests/defer_regress/tests.py
    2222+++ b/tests/defer_regress/tests.py
     
    3838+            self.assertEqual(deferred_second.name, second.name)
    3939+            self.assertEqual(deferred_second.source.name, first.name)
    40 +            self.assertEqual(deferred_first.destination.name, second.name)
     40+            self.assertEqual(deferred_first.destination.value, second.value)
    4141+
    4242
Back to Top