aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-09-21 20:41:47 +0300
committerGravatar ks129 <[email protected]>2020-09-21 20:41:47 +0300
commite68fad590415479f7b53545bf942d9f3b25ad1d3 (patch)
treeb550b1cdc2889dbc081c7a09855efa792b3e03f5 /tests
parentMerge branch 'master' into mod-utils-tests (diff)
Fix end of file of mod utils tests
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/exts/moderation/infraction/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/exts/moderation/infraction/test_utils.py b/tests/bot/exts/moderation/infraction/test_utils.py
index 674993862..5f649e136 100644
--- a/tests/bot/exts/moderation/infraction/test_utils.py
+++ b/tests/bot/exts/moderation/infraction/test_utils.py
@@ -356,4 +356,4 @@ class TestPostInfraction(unittest.IsolatedAsyncioTestCase):
actual = await utils.post_infraction(self.ctx, self.user, "mute", "Test reason")
self.assertEqual(actual, "foo")
self.bot.api_client.post.assert_has_awaits([call("bot/infractions", json=payload)] * 2)
- post_user_mock.assert_awaited_once_with(self.ctx, self.user) \ No newline at end of file
+ post_user_mock.assert_awaited_once_with(self.ctx, self.user)