Skip to content
Snippets Groups Projects
Commit 474810d9 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

fix broken test

This test stubbed out some stuff in a very weird way. I have no idea why. It broke.
parent 68c0ce62
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,6 @@ from twisted.internet import defer ...@@ -4,7 +4,6 @@ from twisted.internet import defer
from synapse.api.constants import EventTypes, ServerNoticeMsgType from synapse.api.constants import EventTypes, ServerNoticeMsgType
from synapse.api.errors import ResourceLimitError from synapse.api.errors import ResourceLimitError
from synapse.handlers.auth import AuthHandler
from synapse.server_notices.resource_limits_server_notices import ( from synapse.server_notices.resource_limits_server_notices import (
ResourceLimitsServerNotices, ResourceLimitsServerNotices,
) )
...@@ -13,17 +12,10 @@ from tests import unittest ...@@ -13,17 +12,10 @@ from tests import unittest
from tests.utils import setup_test_homeserver from tests.utils import setup_test_homeserver
class AuthHandlers(object):
def __init__(self, hs):
self.auth_handler = AuthHandler(hs)
class TestResourceLimitsServerNotices(unittest.TestCase): class TestResourceLimitsServerNotices(unittest.TestCase):
@defer.inlineCallbacks @defer.inlineCallbacks
def setUp(self): def setUp(self):
self.hs = yield setup_test_homeserver(self.addCleanup, handlers=None) self.hs = yield setup_test_homeserver(self.addCleanup)
self.hs.handlers = AuthHandlers(self.hs)
self.auth_handler = self.hs.handlers.auth_handler
self.server_notices_sender = self.hs.get_server_notices_sender() self.server_notices_sender = self.hs.get_server_notices_sender()
# relying on [1] is far from ideal, but the only case where # relying on [1] is far from ideal, but the only case where
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment