Skip to content

Commit

Permalink
Fix error on test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
sshiells-scottlogic committed Feb 14, 2025
1 parent db52942 commit b5230c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Finos.CCC.Validator/Validators/ControlsValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private BoolResult ValidateTestRequirements(ControlsFile file)
{
if (!testRequirement.Id.StartsWith(control.Id))
{
Console.WriteLine($"ERROR: Test Requirement {testRequirement.Id} doesn't start with control Id: {control.Id}.");
ConsoleWriter.WriteError($"ERROR: Test Requirement {testRequirement.Id} doesn't start with control Id: {control.Id}.");
valid = false;
errorCount++;
}
Expand Down

0 comments on commit b5230c5

Please sign in to comment.