summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/zope/proxy/tests/test_proxy.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zope/proxy/tests/test_proxy.py b/src/zope/proxy/tests/test_proxy.py
index 568fc03..85d844c 100644
--- a/src/zope/proxy/tests/test_proxy.py
+++ b/src/zope/proxy/tests/test_proxy.py
@@ -1320,8 +1320,10 @@ class Test_removeAllProxies(Test_py_removeAllProxies):
from zope.proxy import ProxyBase
return ProxyBase(obj)
- def test_security_proxy(self):
- raise unittest.SkipTest("This fails with the C implementation")
+ def _makeSecurityProxy(self, obj):
+ from zope.security.proxy import Proxy
+ checker = object()
+ return Proxy(obj, checker)
class Test_ProxyIterator(unittest.TestCase):