test(settings): Ensure ExternalLink model hasrequired field template added

ref: #833 #835
This commit is contained in:
2025-06-16 18:07:01 +09:30
parent ea1d6f4a20
commit e233bf4487

View File

@ -138,12 +138,14 @@ class ViewSetBase:
self.item = self.model.objects.create(
organization = self.organization,
name = 'one'
name = 'one',
template = 'aa'
)
self.other_org_item = self.model.objects.create(
organization = self.different_organization,
name = 'two'
name = 'aa',
template = 'aa'
)