aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Daniel Brown <[email protected]>2020-05-04 13:50:32 -0500
committerGravatar GitHub <[email protected]>2020-05-04 13:50:32 -0500
commitc3d5ac79ea19fc6acc7c630f8b98d3769e9ca442 (patch)
tree63020c3beb26ee3037fa7d86b161774a34f16ff5 /tests
parentPerma Bans now Overwrite Temp Bans (diff)
parentMerge pull request #922 from python-discord/bug/info/914/user-animated-avatar (diff)
Merge branch 'master' into feature/hemlock/perma-ban-override-temp
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/test_information.py2
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")