Skip to content

Commit

Permalink
Merge PR #3056 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Oct 8, 2024
2 parents 3327713 + 5b3fbcb commit 34245c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tracking_manager/tests/test_tracking_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def setUpClass(cls):
}
)
cls.partner_model = cls.env.ref("base.model_res_partner")
cls._active_tracking(["user_ids", "category_id", "child_ids"])
cls._active_tracking(["user_ids", "category_id"])
cls.flush_tracking()
cls.partner.message_ids.unlink()

Expand Down Expand Up @@ -270,6 +270,7 @@ def test_o2m_write_and_unlink_directly(self):
self.assertEqual(self.messages.body.count("Delete"), 1)

def test_o2m_update_record(self):
self.env.ref("base.field_res_partner__child_ids").custom_tracking = True
child = self.env["res.partner"].create(
{"name": "Test child", "parent_id": self.partner.id}
)
Expand Down

0 comments on commit 34245c4

Please sign in to comment.