diff options
author | 2022-09-20 17:58:52 -0700 | |
---|---|---|
committer | 2022-09-20 17:58:52 -0700 | |
commit | 02b1f09332e7dcbae8b9a00f21d2da6ec7983488 (patch) | |
tree | 2eb8acd044d7cbfcefcd73f67ac6cffcd308b3f6 /tests/test_helpers.py | |
parent | Moved `escape_markdown` after Truthy check (#2279) (diff) | |
parent | Merge branch 'main' into 2108-invoke-rule-command-with-keywords (diff) |
Merge #2261 - add support to fetch rules via keywords
Diffstat (limited to 'tests/test_helpers.py')
-rw-r--r-- | tests/test_helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_helpers.py b/tests/test_helpers.py index f3040b305..b2686b1d0 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -14,7 +14,7 @@ class DiscordMocksTests(unittest.TestCase): """Test if the default initialization of MockRole results in the correct object.""" role = helpers.MockRole() - # The `spec` argument makes sure `isistance` checks with `discord.Role` pass + # The `spec` argument makes sure `isinstance` checks with `discord.Role` pass self.assertIsInstance(role, discord.Role) self.assertEqual(role.name, "role") |