diff options
| author | 2020-07-27 10:26:10 +0200 | |
|---|---|---|
| committer | 2020-07-27 10:30:01 +0200 | |
| commit | 3d5faa421756fadb42590db92e8fee64578390d4 (patch) | |
| tree | c88ad10c50cb21e0b0fcabd55ea65ea87de5afd5 /tests | |
| parent | More explicit dict indexing (diff) | |
Rename AllowDenyList to FilterLists
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bot/cogs/test_antimalware.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/cogs/test_antimalware.py b/tests/bot/cogs/test_antimalware.py index 1e010d2ce..664fa8f19 100644 --- a/tests/bot/cogs/test_antimalware.py +++ b/tests/bot/cogs/test_antimalware.py @@ -14,7 +14,7 @@ class AntiMalwareCogTests(unittest.IsolatedAsyncioTestCase): def setUp(self): """Sets up fresh objects for each test.""" self.bot = MockBot() - self.bot.allow_deny_list_cache = { + self.bot.filter_list_cache = { "file_format.True": [ {"content": ".first"}, {"content": ".second"}, |