summary refs log tree commit diff
path: root/tests/unittest.py
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-09-20 16:28:18 +1000
committerGitHub <noreply@github.com>2018-09-20 16:28:18 +1000
commitaeca5a5ed5816a7797a0807142a41e14baac80f6 (patch)
tree1cdc5680aa209c124fcc70b47b9ca2d66b8eb368 /tests/unittest.py
parentImprove the logging when handling a federation transaction (#3904) (diff)
downloadsynapse-aeca5a5ed5816a7797a0807142a41e14baac80f6.tar.xz
Add a regression test for logging on failed connections (#3912)
Diffstat (limited to 'tests/unittest.py')
-rw-r--r--tests/unittest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittest.py b/tests/unittest.py
index a3d39920db..56f3dca394 100644
--- a/tests/unittest.py
+++ b/tests/unittest.py
@@ -219,7 +219,8 @@ class HomeserverTestCase(TestCase):
 
         Function to be overridden in subclasses.
         """
-        raise NotImplementedError()
+        hs = self.setup_test_homeserver()
+        return hs
 
     def prepare(self, reactor, clock, homeserver):
         """