test: correct serializer imports from recent file renames

ref: #732 #726
This commit is contained in:
2025-04-26 06:08:37 +09:30
parent b6146b7d14
commit 677cc55e04
5 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@ from django.test import TestCase
from rest_framework.exceptions import ValidationError from rest_framework.exceptions import ValidationError
from access.serializers.contact import ( from access.serializers.entity_contact import (
Contact, Contact,
ModelSerializer ModelSerializer
) )

View File

@ -4,7 +4,7 @@ from django.test import TestCase
from rest_framework.exceptions import ValidationError from rest_framework.exceptions import ValidationError
from access.serializers.person import ( from access.serializers.entity_person import (
Person, Person,
ModelSerializer ModelSerializer
) )

View File

@ -55,6 +55,7 @@ from core.viewsets import (
ticket_category, ticket_category,
ticket_category_notes, ticket_category_notes,
ticket_comment, ticket_comment,
ticket_comment_depreciated,
ticket_comment_category, ticket_comment_category,
ticket_comment_category_notes, ticket_comment_category_notes,
ticket_linked_item, ticket_linked_item,

View File

@ -8,7 +8,7 @@ from rest_framework.exceptions import ValidationError
from access.middleware.request import Tenancy from access.middleware.request import Tenancy
from access.models.organization import Organization from access.models.organization import Organization
from core.serializers.ticket_comment import ( from core.serializers.ticket_comment_depreciated import (
Ticket, Ticket,
TicketComment, TicketComment,

View File

@ -4,7 +4,7 @@ from django.test import TestCase
from rest_framework.exceptions import ValidationError from rest_framework.exceptions import ValidationError
from human_resources.serializers.employee import ( from human_resources.serializers.entity_employee import (
Employee, Employee,
ModelSerializer ModelSerializer
) )