aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2019-11-09 13:49:55 +0100
committerGravatar kwzrd <[email protected]>2019-11-09 13:49:55 +0100
commitb1c6b4e20578395a5766ac116fd4def1df777de7 (patch)
tree9c36370264fff2689965580c450f58da3dfcee36
parentUse range to build mock mentions list (diff)
Adjust type hint to correctly represent internal type
-rw-r--r--tests/bot/rules/test_mentions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/rules/test_mentions.py b/tests/bot/rules/test_mentions.py
index e1a971dbb..08dd1d6d5 100644
--- a/tests/bot/rules/test_mentions.py
+++ b/tests/bot/rules/test_mentions.py
@@ -7,7 +7,7 @@ from tests.helpers import async_test
class FakeMessage(NamedTuple):
author: str
- mentions: List[None]
+ mentions: List[int]
class Case(NamedTuple):