Skip to content
Snippets Groups Projects
Unverified Commit bf9a11c5 authored by Brendan Abolivier's avatar Brendan Abolivier
Browse files

Lint again

parent 7c24d0f4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment