diff options
| author | 2020-05-05 23:50:50 +0200 | |
|---|---|---|
| committer | 2020-05-05 23:50:50 +0200 | |
| commit | e1e26e171022d47645abf54cbe54b14dee680e74 (patch) | |
| tree | 8c648f958f20ea25173cfa2acf8e786b606caec9 /tests | |
| parent | Log unhandled errors from event listeners (diff) | |
| parent | Merge pull request #925 from Savant-Dev/antimalware (diff) | |
Merge branch 'master' into bug/backend/911/log-listener-exceptions
Diffstat (limited to '')
| -rw-r--r-- | tests/bot/cogs/test_information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/bot/cogs/test_information.py b/tests/bot/cogs/test_information.py index 6dace1080..b5f928dd6 100644 --- a/tests/bot/cogs/test_information.py +++ b/tests/bot/cogs/test_information.py @@ -485,7 +485,7 @@ class UserEmbedTests(unittest.TestCase):          user.avatar_url_as.return_value = "avatar url"          embed = asyncio.run(self.cog.create_user_embed(ctx, user)) -        user.avatar_url_as.assert_called_once_with(format="png") +        user.avatar_url_as.assert_called_once_with(static_format="png")          self.assertEqual(embed.thumbnail.url, "avatar url") | 
