aboutsummaryrefslogtreecommitdiffstats
path: root/api/tests
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-02-07 21:59:42 +0100
committerGravatar Johannes Christ <[email protected]>2019-02-07 21:59:42 +0100
commit68d1d75d19df39c018578b8928c36547bfca7304 (patch)
tree72c97df17a5e3bf069cd53b487a47ba94f431850 /api/tests
parentDefine proper update method. (diff)
Add a bot setting model.
Diffstat (limited to 'api/tests')
-rw-r--r--api/tests/test_models.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/api/tests/test_models.py b/api/tests/test_models.py
index a958419d..43d1eb41 100644
--- a/api/tests/test_models.py
+++ b/api/tests/test_models.py
@@ -3,14 +3,14 @@ from datetime import datetime as dt, timezone
from django.test import SimpleTestCase
from ..models import (
- DeletedMessage, DocumentationLink,
- Infraction, Message,
- MessageDeletionContext, ModelReprMixin,
- OffTopicChannelName, Reminder,
- Role, SnakeFact,
- SnakeIdiom, SnakeName,
- SpecialSnake, Tag,
- User
+ BotSetting, DeletedMessage,
+ DocumentationLink, Infraction,
+ Message, MessageDeletionContext,
+ ModelReprMixin, OffTopicChannelName,
+ Reminder, Role,
+ SnakeFact, SnakeIdiom,
+ SnakeName, SpecialSnake,
+ Tag, User
)