From 02fcf7d500e3865df6502b02887ed349df644589 Mon Sep 17 00:00:00 2001 From: Aaron Kable Date: Mon, 10 Apr 2023 19:45:28 +0800 Subject: [PATCH] fix TS Tests with mySql --- allianceauth/services/modules/teamspeak3/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/services/modules/teamspeak3/tests.py b/allianceauth/services/modules/teamspeak3/tests.py index 2354bf98..eb3866af 100644 --- a/allianceauth/services/modules/teamspeak3/tests.py +++ b/allianceauth/services/modules/teamspeak3/tests.py @@ -457,7 +457,7 @@ class Teamspeak3AdminTestCase(TestCase): cls.site = AdminSite() cls.admin = AuthTSgroupAdmin(AuthTS, cls.site) cls.group = Group.objects.create(name='test') - cls.ts_group = TSgroup.objects.create(ts_group_name='test') + cls.ts_group = TSgroup.objects.create(ts_group_id=1, ts_group_name='test') def test_field_queryset_no_reserved_names(self): """Ensure all groups are listed when no reserved names"""