aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-10-25 09:36:47 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-10-25 09:45:24 +0300
commit6eda6c243d60466bdad66b46cdcbd6293fb4424f (patch)
tree9fcb61ca9b66425b3cd473aa5301e9733259a37b /contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py
parent71cfb7652c50b626f60cf145b918e4e91acc86d0 (diff)
downloadydb-6eda6c243d60466bdad66b46cdcbd6293fb4424f.tar.gz
Intermediate changes
commit_hash:7a203c6d0c248df6f8cf32d7de94727084be033c
Diffstat (limited to 'contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py')
-rw-r--r--contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py b/contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py
index 6c41d49412..a1006493af 100644
--- a/contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py
+++ b/contrib/python/zope.interface/py3/zope/interface/tests/test_interfaces.py
@@ -41,7 +41,7 @@ class ObjectEventTests(unittest.TestCase, _ConformsToIObjectEvent):
def test_ctor(self):
target = object()
event = self._makeOne(target)
- self.assertTrue(event.object is target)
+ self.assertIs(event.object, target)
class RegistrationEventTests(unittest.TestCase,