aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_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/test_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/test_helpers.py')
-rw-r--r--tests/test_helpers.py2
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")