diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-09-20 16:28:18 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 16:28:18 +1000 |
commit | aeca5a5ed5816a7797a0807142a41e14baac80f6 (patch) | |
tree | 1cdc5680aa209c124fcc70b47b9ca2d66b8eb368 /tests/unittest.py | |
parent | Improve the logging when handling a federation transaction (#3904) (diff) | |
download | synapse-aeca5a5ed5816a7797a0807142a41e14baac80f6.tar.xz |
Add a regression test for logging on failed connections (#3912)
Diffstat (limited to 'tests/unittest.py')
-rw-r--r-- | tests/unittest.py | 3 |
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): """ |