diff options
| author | 2020-03-04 09:21:18 -0800 | |
|---|---|---|
| committer | 2020-03-04 09:21:18 -0800 | |
| commit | 7fa0f8ccc3b60f85ccb2b6d24226823568c1a856 (patch) | |
| tree | b0fcaf408914a5b18da12d9b54f517850172d081 /tests/base.py | |
| parent | Merge branch 'master' into antimalware-logging (diff) | |
| parent | Merge pull request #816 from python-discord/extensions-cog-docstring-deprecat... (diff) | |
Merge branch 'master' into antimalware-logging
Diffstat (limited to 'tests/base.py')
| -rw-r--r-- | tests/base.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tests/base.py b/tests/base.py index 42174e911..d99b9ac31 100644 --- a/tests/base.py +++ b/tests/base.py @@ -31,7 +31,7 @@ class LoggingTestsMixin:      """      @contextmanager -    def assertNotLogs(self, logger=None, level=None, msg=None): +    def assertNotLogs(self, logger=None, level=None, msg=None):  # noqa: N802          """          Asserts that no logs of `level` and higher were emitted by `logger`. @@ -81,7 +81,7 @@ class LoggingTestsMixin:  class CommandTestCase(unittest.IsolatedAsyncioTestCase):      """TestCase with additional assertions that are useful for testing Discord commands.""" -    async def assertHasPermissionsCheck( +    async def assertHasPermissionsCheck(  # noqa: N802          self,          cmd: commands.Command,          permissions: Dict[str, bool], | 
