1 files changed, 3 insertions, 0 deletions
diff --git a/tests/handlers/test_presencelike.py b/tests/handlers/test_presencelike.py
index 224cf646f4..f244ab6007 100644
--- a/tests/handlers/test_presencelike.py
+++ b/tests/handlers/test_presencelike.py
@@ -43,6 +43,9 @@ class MockReplication(object):
def register_edu_handler(self, edu_type, handler):
self.edu_handlers[edu_type] = handler
+ def register_query_handler(self, query_type, handler):
+ pass
+
def received_edu(self, origin, edu_type, content):
self.edu_handlers[edu_type](origin, content)
|