Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Kirill Smelkov
Zope
Commits
e37190e8
Commit
e37190e8
authored
Mar 30, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt a doctest to changed semantics of the doctest vs. zope.testing.doctest module.
parent
a3866341
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/Products/Five/utilities/browser/tests/test_marker.py
src/Products/Five/utilities/browser/tests/test_marker.py
+3
-3
No files found.
src/Products/Five/utilities/browser/tests/test_marker.py
View file @
e37190e8
...
@@ -49,7 +49,7 @@ def test_editview():
...
@@ -49,7 +49,7 @@ def test_editview():
Try to add a marker interface that doesn't exist:
Try to add a marker interface that doesn't exist:
>>> view.update(('__
built
in__.IFooMarker',), ())
>>> view.update(('__
ma
in__.IFooMarker',), ())
Traceback (most recent call last):
Traceback (most recent call last):
...
...
ComponentLookupError...
ComponentLookupError...
...
@@ -67,7 +67,7 @@ def test_editview():
...
@@ -67,7 +67,7 @@ def test_editview():
And try again to add it to the object:
And try again to add it to the object:
>>> view.update(('__
built
in__.IFooMarker',), ())
>>> view.update(('__
ma
in__.IFooMarker',), ())
>>> view.getAvailableInterfaceNames()
>>> view.getAvailableInterfaceNames()
[]
[]
>>> view.getDirectlyProvidedNames()
>>> view.getDirectlyProvidedNames()
...
@@ -75,7 +75,7 @@ def test_editview():
...
@@ -75,7 +75,7 @@ def test_editview():
And remove it again:
And remove it again:
>>> view.update((), ('__
built
in__.IFooMarker',))
>>> view.update((), ('__
ma
in__.IFooMarker',))
>>> view.getAvailableInterfaceNames()
>>> view.getAvailableInterfaceNames()
[...IFooMarker...]
[...IFooMarker...]
>>> view.getDirectlyProvidedNames()
>>> view.getDirectlyProvidedNames()
...
...
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