diff options
author | 2022-09-20 17:56:54 -0700 | |
---|---|---|
committer | 2022-09-20 17:56:54 -0700 | |
commit | d7411d03996bb8c8a17152b2fc581061a2002225 (patch) | |
tree | 2eb8acd044d7cbfcefcd73f67ac6cffcd308b3f6 /tests/helpers.py | |
parent | move DEFAULT_RULES_DESCRIPTION under information.py (diff) | |
parent | Moved `escape_markdown` after Truthy check (#2279) (diff) |
Merge branch 'main' into 2108-invoke-rule-command-with-keywords
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) |