aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_helpers.py
diff options
context:
space:
mode:
authorGravatar mbaruh <[email protected]>2022-09-24 16:00:41 +0300
committerGravatar mbaruh <[email protected]>2022-09-24 16:00:41 +0300
commit8c2ed9b61d8b80a521122e7bbe095c3211725744 (patch)
tree20f8e958486e86b4d5fe789c7637e5784f6b5531 /tests/test_helpers.py
parentConvert all setting entries to pydnatic models (diff)
parentMerge pull request #2232 from python-discord/bot-2231-enhancements (diff)
Merge branch 'main' into new-filters
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")