summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStephan Richter <stephan.richter@gmail.com>2013-03-10 23:22:37 -0400
committerStephan Richter <stephan.richter@gmail.com>2013-03-10 23:22:37 -0400
commitbf5748bf463bb8238cfa9b96cd08131bfb12b48d (patch)
tree7fc176343ab1086d28cf94dcabffc695749ee723 /src
parent4d01d7ff8cf8d4c657758d04b75aba7c0fdae97a (diff)
downloadzope-security-bf5748bf463bb8238cfa9b96cd08131bfb12b48d.tar.gz
Change the test expectation that was failing for the C and Py proxy
version.
Diffstat (limited to 'src')
-rw-r--r--src/zope/security/tests/test_proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/security/tests/test_proxy.py b/src/zope/security/tests/test_proxy.py
index 7408419..38663cc 100644
--- a/src/zope/security/tests/test_proxy.py
+++ b/src/zope/security/tests/test_proxy.py
@@ -214,7 +214,7 @@ class ProxyTestBase(object):
checker = object() # checker not consulted
proxy = self._makeOne(target, checker)
o_proxy = self._makeOne(target, checker)
- self.assertNotEqual(cmp(proxy, o_proxy), 0)
+ self.assertEqual(cmp(proxy, o_proxy), 0)
def test___hash___w_self(self):
target = object()