aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Amrou Bellalouna <[email protected]>2022-08-19 15:10:13 +0100
committerGravatar Amrou Bellalouna <[email protected]>2022-09-16 16:59:04 +0100
commit74d2b2153e5f6e53f26c9386898868b2e87aa0fb (patch)
treeb0b43eec22d9f499e694626984081bbec85233d6
parentMerge pull request #2268 from python-discord/pin-poetry-to-1.1.X (diff)
fix "isistance" typo
-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")