Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
c30364ca
Commit
c30364ca
authored
Jun 03, 2021
by
Aurel
Committed by
Aurel
Feb 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the stop date is set to None with 1970,1,1 with new DateTime
parent
866a45e9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Base.py
...tTemplateItem/portal_components/test.erp5.testERP5Base.py
+2
-1
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testERP5Base.py
View file @
c30364ca
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment