Commit ba35cf26 authored by Jens W. Klein's avatar Jens W. Klein

fixes TypeError: skipUnless() takes exactly 2 arguments (1 given)

parent ad1c838d
...@@ -12,7 +12,7 @@ else: ...@@ -12,7 +12,7 @@ else:
class MarshalTests(unittest.TestCase): class MarshalTests(unittest.TestCase):
@unittest.skipUnless(_HAVE_ZOPE_UNDO) @unittest.skipUnless(_HAVE_ZOPE_UNDO, 'ZopeUndo is not installed')
def testServerDecodeZopeUndoFilter(self): def testServerDecodeZopeUndoFilter(self):
# this is an example (1) of Zope2's arguments for # this is an example (1) of Zope2's arguments for
# undoInfo call. Arguments are encoded by ZEO client # undoInfo call. Arguments are encoded by ZEO client
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment