From a308024992d9da83de9134df2e7fa481fb563ede Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 14 Nov 2019 00:49:43 -0400 Subject: [PATCH] Fix workflow action tests Signed-off-by: Roberto Rosario --- mayan/apps/acls/tests/test_workflow_actions.py | 2 +- mayan/apps/cabinets/tests/test_workflow_actions.py | 2 +- mayan/apps/mailer/tests/test_workflow_actions.py | 2 +- mayan/apps/tags/tests/test_workflow_actions.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mayan/apps/acls/tests/test_workflow_actions.py b/mayan/apps/acls/tests/test_workflow_actions.py index 38495adb1a..8bd084b49a 100644 --- a/mayan/apps/acls/tests/test_workflow_actions.py +++ b/mayan/apps/acls/tests/test_workflow_actions.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals from django.contrib.contenttypes.models import ContentType -from mayan.apps.document_states.tests.test_workflow_actions import ActionTestCase +from mayan.apps.document_states.tests.base import ActionTestCase from mayan.apps.documents.permissions import permission_document_view from ..workflow_actions import ( diff --git a/mayan/apps/cabinets/tests/test_workflow_actions.py b/mayan/apps/cabinets/tests/test_workflow_actions.py index 88c8697411..f2a55da818 100644 --- a/mayan/apps/cabinets/tests/test_workflow_actions.py +++ b/mayan/apps/cabinets/tests/test_workflow_actions.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals from mayan.apps.common.tests.base import GenericViewTestCase +from mayan.apps.document_states.tests.base import ActionTestCase from mayan.apps.document_states.tests.mixins import WorkflowTestMixin -from mayan.apps.document_states.tests.test_workflow_actions import ActionTestCase from ..models import Cabinet from ..workflow_actions import CabinetAddAction, CabinetRemoveAction diff --git a/mayan/apps/mailer/tests/test_workflow_actions.py b/mayan/apps/mailer/tests/test_workflow_actions.py index e59c8c827a..9d5ccc15fd 100644 --- a/mayan/apps/mailer/tests/test_workflow_actions.py +++ b/mayan/apps/mailer/tests/test_workflow_actions.py @@ -7,8 +7,8 @@ from django.core import mail from mayan.apps.common.tests.base import GenericViewTestCase from mayan.apps.documents.tests.mixins import DocumentTestMixin from mayan.apps.document_states.literals import WORKFLOW_ACTION_ON_ENTRY +from mayan.apps.document_states.tests.base import ActionTestCase from mayan.apps.document_states.tests.mixins import WorkflowTestMixin -from mayan.apps.document_states.tests.test_workflow_actions import ActionTestCase from mayan.apps.metadata.tests.mixins import MetadataTypeTestMixin from ..permissions import permission_user_mailer_use diff --git a/mayan/apps/tags/tests/test_workflow_actions.py b/mayan/apps/tags/tests/test_workflow_actions.py index bb52f2eb62..eb69b14ca4 100644 --- a/mayan/apps/tags/tests/test_workflow_actions.py +++ b/mayan/apps/tags/tests/test_workflow_actions.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals from mayan.apps.common.tests.base import GenericViewTestCase +from mayan.apps.document_states.tests.base import ActionTestCase from mayan.apps.document_states.tests.mixins import WorkflowTestMixin -from mayan.apps.document_states.tests.test_workflow_actions import ActionTestCase from ..models import Tag from ..workflow_actions import AttachTagAction, RemoveTagAction