diff options
author | 2022-09-21 21:31:21 +0100 | |
---|---|---|
committer | 2022-09-21 21:31:21 +0100 | |
commit | 75b2b564adbc1abd75877aae588ac37411ebfb64 (patch) | |
tree | 5e96e9ec78bc7f2c20f4a0a6c33ea25bb1c105c6 /tests/test_helpers.py | |
parent | Display mention & str of the mentionable object in `!remind list`. (diff) | |
parent | Merge #2261 - add support to fetch rules via keywords (diff) |
Merge branch 'main' into bot-2231-enhancements
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") |