aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-04-30 19:27:04 +0100
committerGravatar GitHub <[email protected]>2022-04-30 19:27:04 +0100
commitce10a11b6f53afd877710d09ee375f5e31864201 (patch)
tree4f13a53d207d2670956764b12211d6bc22151150 /tests/helpers.py
parentOnly suppress 404s from site when checking for bumped threads (diff)
parentMerge pull request #2160 from python-discord/2128 (diff)
Merge branch 'main' into improve-thread-bump
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index a6e4bdd66..5f3111616 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -171,7 +171,7 @@ class MockGuild(CustomMockMixin, unittest.mock.Mock, HashableMixin):
spec_set = guild_instance
def __init__(self, roles: Optional[Iterable[MockRole]] = None, **kwargs) -> None:
- default_kwargs = {'id': next(self.discord_id), 'members': []}
+ default_kwargs = {'id': next(self.discord_id), 'members': [], "chunked": True}
super().__init__(**collections.ChainMap(kwargs, default_kwargs))
self.roles = [MockRole(name="@everyone", position=1, id=0)]