Skip to content
Snippets Groups Projects
Commit 4eddd88b authored by Adam Laskowski's avatar Adam Laskowski
Browse files

BIS-769: Fixed PatternValueValidator test

parent 49a417a3
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -108,7 +108,20 @@ public class PatternValueValidatorTest
public ConstraintViolationBuilder buildConstraintViolationWithTemplate(String s)
{
constraints.add(s);
return null;
return new ConstraintViolationBuilder()
{
@Override
public NodeBuilderDefinedContext addNode(String s)
{
return null;
}
@Override
public ConstraintValidatorContext addConstraintViolation()
{
return null;
}
};
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment