test: correct serializer imports from recent file renames
ref: #732 #726
This commit is contained in:
@ -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
|
||||||
)
|
)
|
||||||
|
@ -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
|
||||||
)
|
)
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
|
||||||
|
@ -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
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user