diff options
author | 2020-09-21 20:41:47 +0300 | |
---|---|---|
committer | 2020-09-21 20:41:47 +0300 | |
commit | e68fad590415479f7b53545bf942d9f3b25ad1d3 (patch) | |
tree | b550b1cdc2889dbc081c7a09855efa792b3e03f5 | |
parent | Merge branch 'master' into mod-utils-tests (diff) |
Fix end of file of mod utils tests
-rw-r--r-- | tests/bot/exts/moderation/infraction/test_utils.py | 2 |
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) |