diff options
author | 2021-10-17 10:16:21 +0200 | |
---|---|---|
committer | 2021-10-17 10:16:21 +0200 | |
commit | 4050b0cfe58d88674893d7e94ab63ba10aaca0b7 (patch) | |
tree | b8d2c5a0a6720da7b2b2922704f1c155eaa095ff /tests/base.py | |
parent | Merge pull request #1875 from python-discord/ks123/bugfix/reapply-infraction (diff) | |
parent | Merge remote-tracking branch 'origin/main' into discord-2.0 (diff) |
Migrate to Discord 2.0a0
Diffstat (limited to 'tests/base.py')
-rw-r--r-- | tests/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/base.py b/tests/base.py index ab9287e9a..5e304ea9d 100644 --- a/tests/base.py +++ b/tests/base.py @@ -103,4 +103,4 @@ class CommandTestCase(unittest.IsolatedAsyncioTestCase): with self.assertRaises(commands.MissingPermissions) as cm: await cmd.can_run(ctx) - self.assertCountEqual(permissions.keys(), cm.exception.missing_perms) + self.assertCountEqual(permissions.keys(), cm.exception.missing_permissions) |