diff options
author | 2022-09-16 10:42:16 -0700 | |
---|---|---|
committer | 2022-09-16 17:42:16 +0000 | |
commit | 8028690d4eae27e57dfe1429b8067eabaa94eef9 (patch) | |
tree | f4498ab9aa91ea555cd22bcb2d6549049466161d /tests/helpers.py | |
parent | Merge pull request #2268 from python-discord/pin-poetry-to-1.1.X (diff) |
Removed "redis_ready" from additional_spec_asyncs in MockBot (#2275)
The attribute was removed from Bot in fc05849
Diffstat (limited to 'tests/helpers.py')
-rw-r--r-- | tests/helpers.py | 2 |
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) |