From bf5748bf463bb8238cfa9b96cd08131bfb12b48d Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Sun, 10 Mar 2013 23:22:37 -0400 Subject: Change the test expectation that was failing for the C and Py proxy version. --- src/zope/security/tests/test_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.1