Remove redundant mocking

This commit is contained in:
Richard van der Hoff 2020-12-02 15:12:02 +00:00
parent 30fba62108
commit 90cf1eec44
5 changed files with 5 additions and 36 deletions

View file

@ -14,9 +14,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from mock import Mock
from canonicaljson import json
from twisted.internet import defer
@ -30,12 +27,10 @@ from tests.utils import create_room
class RedactionTestCase(unittest.HomeserverTestCase):
def make_homeserver(self, reactor, clock):
config = self.default_config()
def default_config(self):
config = super().default_config()
config["redaction_retention_period"] = "30d"
return self.setup_test_homeserver(
resource_for_federation=Mock(), federation_http_client=None, config=config
)
return config
def prepare(self, reactor, clock, hs):
self.store = hs.get_datastore()