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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
14bd00da
Commit
14bd00da
authored
Oct 03, 2022
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
Apr 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py3: define TestCase.assertItemsEqual = TestCase.assertCountEqual in Python 3.
parent
2b96a2cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5Type/tests/backportUnittest.py
product/ERP5Type/tests/backportUnittest.py
+4
-1
No files found.
product/ERP5Type/tests/backportUnittest.py
View file @
14bd00da
...
...
@@ -12,7 +12,10 @@ def patch():
import
six
import
traceback
from
unittest
import
TextTestResult
,
TextTestRunner
from
unittest
import
TestCase
,
TextTestResult
,
TextTestRunner
if
six
.
PY3
:
TestCase
.
assertItemsEqual
=
TestCase
.
assertCountEqual
TextTestResult_addError
=
six
.
get_unbound_function
(
TextTestResult
.
addError
)
def
addError
(
self
,
test
,
err
):
...
...
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