Skip to content

Commit

Permalink
pc
Browse files Browse the repository at this point in the history
  • Loading branch information
MLainer1 committed Jun 19, 2024
1 parent bd335d5 commit ba0252f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion demisto_sdk/commands/validate/tests/RP_validatiors_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def test_DetailsFieldEqualsIdValidator_is_valid():
create_indicator_type_object(["details", "id"], ["test", "test"]),
create_indicator_type_object(["details", "id"], ["test", "test-not-equal"]),
]
expected_msgs = ["id and details fields are not equal. id=test-not-equal, details=test"]
expected_msgs = [
"id and details fields are not equal. id=test-not-equal, details=test"
]
results = DetailsFieldEqualsIdValidator().is_valid(content_items)
assert len(results) == 1
assert all(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from demisto_sdk.commands.common.constants import GitStatuses
from demisto_sdk.commands.content_graph.objects.indicator_type import IndicatorType
from demisto_sdk.commands.content_graph.parsers.related_files import RelatedFileType
from demisto_sdk.commands.validate.validators.base_validator import (
BaseValidator,
ValidationResult,
Expand Down

0 comments on commit ba0252f

Please sign in to comment.