0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-16 01:28:32 +02:00

Lint again

This commit is contained in:
Brendan Abolivier 2019-11-19 13:30:04 +00:00
parent 7c24d0f443
commit bf9a11c54d
No known key found for this signature in database
GPG key ID: 1E015C145F1916CD
2 changed files with 3 additions and 11 deletions

View file

@ -19,7 +19,7 @@ import logging
import os.path
import re
from textwrap import indent
from typing import List, Dict, Optional
from typing import Dict, List, Optional
import attr
import yaml

View file

@ -121,11 +121,7 @@ class RetentionTestCase(unittest.HomeserverTestCase):
self.reactor.advance(one_day_ms * 2 / 1000)
# Send another event, which shouldn't get filtered out.
resp = self.helper.send(
room_id=room_id,
body="2",
tok=self.token,
)
resp = self.helper.send(room_id=room_id, body="2", tok=self.token)
valid_event_id = resp.get("event_id")
@ -252,11 +248,7 @@ class RetentionNoDefaultPolicyTestCase(unittest.HomeserverTestCase):
def _test_retention(self, room_id, expected_code_for_first_event=200):
# Send a first event to the room. This is the event we'll want to be purged at the
# end of the test.
resp = self.helper.send(
room_id=room_id,
body="1",
tok=self.token,
)
resp = self.helper.send(room_id=room_id, body="1", tok=self.token)
first_event_id = resp.get("event_id")