summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@svn.zope.org>2002-12-20 23:56:06 +0000
committerJeremy Hylton <jeremy@svn.zope.org>2002-12-20 23:56:06 +0000
commit6b90ab10ffb4eb4721c08af4d5310bcd77c80a6c (patch)
treee0ec6441b92e6de779b8a3b4aa4f077aea22b101
parent39f33fc469d47ca281cc2b39075072fe65b77681 (diff)
downloadzope-traversing-6b90ab10ffb4eb4721c08af4d5310bcd77c80a6c.tar.gz
It isn't possible to catch an assertion error with python -Oancient-zope3
-rw-r--r--tests/testConvenienceFunctions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testConvenienceFunctions.py b/tests/testConvenienceFunctions.py
index 7f17b1c..5e89c3c 100644
--- a/tests/testConvenienceFunctions.py
+++ b/tests/testConvenienceFunctions.py
@@ -13,7 +13,7 @@
##############################################################################
"""
-$Id: testConvenienceFunctions.py,v 1.11 2002/12/12 11:32:35 mgedmin Exp $
+$Id: testConvenienceFunctions.py,v 1.12 2002/12/20 23:56:06 jeremy Exp $
"""
from unittest import TestCase, TestSuite, main, makeSuite
from Zope.App.OFS.Services.ServiceManager.tests.PlacefulSetup \
@@ -216,7 +216,7 @@ class Test(PlacefulSetup, TestCase):
(ValueError, 23),
(ValueError, ''),
(ValueError, '//'),
- (AssertionError, '/foo//bar'),
+## (AssertionError, '/foo//bar'),
# regarding the next four errors:
# having a trailing slash on a location is undefined.