Commit 6c0dd4ec authored by Aurel's avatar Aurel Committed by Jérome Perrin

the stop date is set to None with 1970,1,1 with new DateTime

parent bceccec0
No related merge requests found
......@@ -1916,7 +1916,8 @@ class Base_getDialogSectionCategoryItemListTest(ERP5TypeTestCase):
def test_only_valid_assignments_are_considered(self):
self.person.newContent(portal_type='Assignment', group='main_group/sub_group').open()
self.person.newContent(portal_type='Assignment', group='main_group', stop_date=DateTime(1970, 1, 1)).open()
# XXX If set on 1970.1.1, the stop_date is None with new DateTime
self.person.newContent(portal_type='Assignment', group='main_group', stop_date=DateTime(1970, 1, 2)).open()
self.person.newContent(portal_type='Assignment', group='main_group') # left as draft
self.tic()
self.login(self.user_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment