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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mukul
erp5
Commits
6c54a3a1
Commit
6c54a3a1
authored
Feb 28, 2018
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZODB Components: Unit Tests: Fix "NameError: global name 'full_module_name' is not defined".
parent
42b78972
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
product/ERP5Type/tests/testDynamicClassGeneration.py
product/ERP5Type/tests/testDynamicClassGeneration.py
+4
-4
No files found.
product/ERP5Type/tests/testDynamicClassGeneration.py
View file @
6c54a3a1
...
@@ -1358,8 +1358,8 @@ class _TestZodbComponent(SecurityTestCase):
...
@@ -1358,8 +1358,8 @@ class _TestZodbComponent(SecurityTestCase):
except
ImportError
:
except
ImportError
:
pass
pass
else
:
else
:
self
.
fail
(
"Component '%s' should not have been generated"
%
\
self
.
fail
(
"Component '%s' should not have been generated"
%
full_module_name
)
self
.
_getComponentFullModuleName
(
module_name
)
)
self
.
_component_tool
.
reset
(
force
=
True
,
self
.
_component_tool
.
reset
(
force
=
True
,
reset_portal_type_at_transaction_boundary
=
False
)
reset_portal_type_at_transaction_boundary
=
False
)
...
@@ -1376,8 +1376,8 @@ class _TestZodbComponent(SecurityTestCase):
...
@@ -1376,8 +1376,8 @@ class _TestZodbComponent(SecurityTestCase):
try
:
try
:
self
.
_importModule
(
module_name
)
self
.
_importModule
(
module_name
)
except
ImportError
:
except
ImportError
:
self
.
fail
(
"Component '%s' should have been generated"
%
\
self
.
fail
(
"Component '%s' should have been generated"
%
full_module_name
)
self
.
_getComponentFullModuleName
(
module_name
)
)
if
expected_default_version
is
not
None
:
if
expected_default_version
is
not
None
:
top_module_name
=
self
.
_getComponentModuleName
()
top_module_name
=
self
.
_getComponentModuleName
()
...
...
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