aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2020-04-19 09:50:24 -0700
committerGravatar GitHub <[email protected]>2020-04-19 09:50:24 -0700
commit80d8c7e13ecdce31917f9f0083fa17c1f97317eb (patch)
tree211b3b6f98fe8343740d15762191172a5a30f5d6 /tests
parentTags: explicitly use UTF-8 to read files (diff)
parentMerge pull request #877 from python-discord/bug/frontend/870/help-channel-dm-... (diff)
Merge branch 'master' into bug/info/869/tag-encoding
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/sync/test_base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/bot/cogs/sync/test_base.py b/tests/bot/cogs/sync/test_base.py
index 6ee9dfda6..70aea2bab 100644
--- a/tests/bot/cogs/sync/test_base.py
+++ b/tests/bot/cogs/sync/test_base.py
@@ -1,3 +1,4 @@
+import asyncio
import unittest
from unittest import mock
@@ -211,7 +212,7 @@ class SyncerConfirmationTests(unittest.IsolatedAsyncioTestCase):
subtests = (
(constants.Emojis.check_mark, True, None),
("InVaLiD", False, None),
- (None, False, TimeoutError),
+ (None, False, asyncio.TimeoutError),
)
for emoji, ret_val, side_effect in subtests: