Move template_content_validator and test_template_content_validator to the correct packages. This should have been part of https://review.openstack.org/477572 but was removed due to git issues.

Change-Id: I7d642cea6f6f4615262fd9e156ba842c8215bd59
Implements: blueprint support-external-actions
This commit is contained in:
Ifat Afek 2017-06-28 15:01:21 +00:00
parent 73bdfc106f
commit 014d4640d6
4 changed files with 4 additions and 4 deletions

View File

@ -16,9 +16,9 @@ import json
from oslo_log import log
from vitrage.evaluator.template_fields import TemplateFields
from vitrage.evaluator.template_validation.status_messages import status_msgs
from vitrage.evaluator.template_validation.template_content_validator \
from vitrage.evaluator.template_validation.content.template_content_validator \
import content_validation
from vitrage.evaluator.template_validation.status_messages import status_msgs
from vitrage.evaluator.template_validation.template_syntax_validator import \
syntax_validation

View File

@ -21,7 +21,7 @@ from oslo_utils import uuidutils
from vitrage.evaluator.base import Template
from vitrage.evaluator.equivalence_repository import EquivalenceRepository
from vitrage.evaluator.template_data import TemplateData
from vitrage.evaluator.template_validation.template_content_validator \
from vitrage.evaluator.template_validation.content.template_content_validator \
import content_validation
from vitrage.evaluator.template_validation.template_syntax_validator import \
syntax_validation

View File

@ -15,7 +15,7 @@
import copy
from vitrage.evaluator.template_fields import TemplateFields
from vitrage.evaluator.template_validation import \
from vitrage.evaluator.template_validation.content import \
template_content_validator as validator
from vitrage.tests.mocks import utils
from vitrage.tests.unit.evaluator.template_validation.content.base import \