aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-10-05 19:15:42 +0100
committerGravatar GitHub <[email protected]>2022-10-05 19:15:42 +0100
commit1784014abd2e3d895bdc4734de35fabcf2840a31 (patch)
treef0eebd3c4e386a6ec8550a3eac5d2c6289f2d099 /tests/helpers.py
parentAdd message when there are no patrons in a tier (diff)
parentMerge pull request #2284 from shtlrs/2281-fix-non-awaited-remove-cog-calls (diff)
Merge branch 'main' into patreon
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 687e15b96..a4b919dcb 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -317,7 +317,7 @@ class MockBot(CustomMockMixin, unittest.mock.MagicMock):
guild_id=1,
intents=discord.Intents.all(),
)
- additional_spec_asyncs = ("wait_for", "redis_ready")
+ additional_spec_asyncs = ("wait_for",)
def __init__(self, **kwargs) -> None:
super().__init__(**kwargs)