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
Yusei Tahara
erp5
Commits
2d6d1556
Commit
2d6d1556
authored
Feb 19, 2020
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testDynamicClassGeneration: Cosmetics.
parent
f72d4e26
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
product/ERP5Type/tests/testDynamicClassGeneration.py
product/ERP5Type/tests/testDynamicClassGeneration.py
+2
-5
No files found.
product/ERP5Type/tests/testDynamicClassGeneration.py
View file @
2d6d1556
...
...
@@ -2610,7 +2610,6 @@ class DifferentFromReference(Person):
from
types
import
ModuleType
interface_module
=
ModuleType
(
'ITestPortalType'
)
interface_module
.
ITestPortalType
=
ITestPortalType
import
sys
sys
.
modules
[
'ITestPortalType'
]
=
interface_module
self
.
failIfModuleImportable
(
'TestPortalType'
)
...
...
@@ -2743,7 +2742,6 @@ class TestWithImport(TestImported):
from
types
import
ModuleType
interface_module
=
ModuleType
(
'ITestGC'
)
interface_module
.
ITestGC
=
ITestGC
import
sys
sys
.
modules
[
'ITestGC'
]
=
interface_module
self
.
failIfModuleImportable
(
'TestGC'
)
...
...
@@ -2767,6 +2765,8 @@ class TestGC(XMLObject):
import
gc
initial_gc_debug_flags
=
gc
.
get_debug
()
initial_stderr
=
sys
.
stderr
from
cStringIO
import
StringIO
stderr
=
StringIO
()
try
:
gc
.
disable
()
...
...
@@ -2782,8 +2782,6 @@ class TestGC(XMLObject):
gc
.
collect
()
self
.
assertEqual
(
gc
.
garbage
,
[])
import
sys
from
cStringIO
import
StringIO
import
erp5.component
gc
.
set_debug
(
gc
.
DEBUG_STATS
|
...
...
@@ -2791,7 +2789,6 @@ class TestGC(XMLObject):
gc
.
DEBUG_COLLECTABLE
|
gc
.
DEBUG_OBJECTS
|
gc
.
DEBUG_INSTANCES
)
stderr
=
StringIO
()
sys
.
stderr
=
stderr
# Still not garbage collectable as RefManager still keeps a reference
erp5
.
component
.
ref_manager
.
clear
()
...
...
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