summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-04-07 16:41:37 +0100
committerMark Haines <mark.haines@matrix.org>2016-04-07 16:41:37 +0100
commit57fa1801c336603c6c710d6d868aaae596a7f5b8 (patch)
tree3a373e073741f4fcff79c51948af0b5d4bd044fe /synapse
parentAdd tests for get_latest_event_ids_in_room and get_current_state (diff)
downloadsynapse-57fa1801c336603c6c710d6d868aaae596a7f5b8.tar.xz
Add sensible __eq__ operators inside the tests.
Rather than adding them globally. This limits the changes to only
affect the tests.
Diffstat (limited to 'synapse')
-rw-r--r--synapse/events/__init__.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/synapse/events/__init__.py b/synapse/events/__init__.py
index 81e2126202..13154b1723 100644
--- a/synapse/events/__init__.py
+++ b/synapse/events/__init__.py
@@ -36,10 +36,6 @@ class _EventInternalMetadata(object):
     def is_invite_from_remote(self):
         return getattr(self, "invite_from_remote", False)
 
-    def __eq__(self, other):
-        "Equality check for unit tests."
-        return self.__dict__ == other.__dict__
-
 
 def _event_dict_property(key):
     def getter(self):
@@ -184,8 +180,3 @@ class FrozenEvent(EventBase):
             self.get("type", None),
             self.get("state_key", None),
         )
-
-    def __eq__(self, other):
-        """Equality check for unit tests. Compares internal_metadata as well
-        as the event fields"""
-        return self.__dict__ == other.__dict__