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
2d0fb2b5
Commit
2d0fb2b5
authored
2 years ago
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
8 months ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: explicitly cast to list in ERP5Type/tests.
parent
52699b33
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
product/ERP5Type/tests/runTestSuite.py
product/ERP5Type/tests/runTestSuite.py
+1
-1
product/ERP5Type/tests/utils.py
product/ERP5Type/tests/utils.py
+2
-2
No files found.
product/ERP5Type/tests/runTestSuite.py
View file @
2d0fb2b5
...
...
@@ -146,7 +146,7 @@ def main():
assert
revision
==
test_result
.
revision
,
(
revision
,
test_result
.
revision
)
while
suite
.
acquire
():
test
=
test_result
.
start
(
suite
.
running
.
keys
(
))
test
=
test_result
.
start
(
list
(
suite
.
running
.
keys
()
))
if
test
is
not
None
:
suite
.
start
(
test
.
name
,
lambda
status_dict
,
__test
=
test
:
__test
.
stop
(
**
status_dict
))
...
...
This diff is collapsed.
Click to expand it.
product/ERP5Type/tests/utils.py
View file @
2d0fb2b5
...
...
@@ -588,7 +588,7 @@ def updateCellList(portal, line, cell_type, cell_range_method, cell_dict_list):
def
getSortedCategoryList
(
line
,
base_id
,
category_list
):
result
=
[]
index_list
=
li
ne
.
index
[
base_id
].
keys
(
)
index_list
=
li
st
(
line
.
index
[
base_id
].
keys
()
)
index_list
.
sort
()
for
category
in
category_list
:
for
index
in
index_list
:
...
...
@@ -665,7 +665,7 @@ def updateCellList(portal, line, cell_type, cell_range_method, cell_dict_list):
*
category_list
)
cell
.
edit
(
**
mapped_value_dict
)
cell
.
setMappedValuePropertyList
(
mapped_value_dict
.
keys
(
))
cell
.
setMappedValuePropertyList
(
list
(
mapped_value_dict
.
keys
()
))
base_category_list
=
[
category_path
for
category_path
in
category_list
...
...
This diff is collapsed.
Click to expand it.
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