Skip to content

Commit

Permalink
fix: lint issue
Browse files Browse the repository at this point in the history
fr?
  • Loading branch information
JayDwee authored and Sergeileduc committed Apr 3, 2023
1 parent d64406a commit 42d18fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async def test_edit(bot):
persisted_mes1 = await channel.fetch_message(mes.id)
edited_mes = await mes.edit(content="New Message")
persisted_mes2 = await channel.fetch_message(mes.id)

assert edited_mes.content == "New Message"
assert persisted_mes1.content == "Test Message"
assert persisted_mes2.content == "New Message"

0 comments on commit 42d18fe

Please sign in to comment.