diff options
author | 2022-10-19 10:56:19 +0100 | |
---|---|---|
committer | 2022-10-19 10:56:19 +0100 | |
commit | 3f99bf3738a5090e6ca0bda6f5017f527c3d5b1e (patch) | |
tree | e0cd69d6519d2a8cd19b71a333f9770345a16811 /tests/test_helpers.py | |
parent | Make changes requested in review (diff) | |
parent | Merge pull request #2296 from python-discord/lemon/resolve-serious-grammatica... (diff) |
Merge branch 'main' into update-autoreview-system
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") |