Skip to content

Commit

Permalink
Change the test expectation that was failing for the C and Py proxy
Browse files Browse the repository at this point in the history
version.
  • Loading branch information
strichter committed Mar 11, 2013
1 parent 4d01d7f commit bf5748b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zope/security/tests/test_proxy.py
Expand Up @@ -214,7 +214,7 @@ def test___cmp___w_other_proxy(self):
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()
Expand Down

0 comments on commit bf5748b

Please sign in to comment.