DATACMNS-953 - Fixed application of GenericPropertyMatchers.exact().
We now really use exact matching for a match setup requesting exact matching. Previously, we erroneously set up the matching with a startsWith().
This commit is contained in:
@@ -608,7 +608,7 @@ public class ExampleMatcher {
|
||||
* @return
|
||||
*/
|
||||
public static GenericPropertyMatcher exact() {
|
||||
return new GenericPropertyMatcher().startsWith();
|
||||
return new GenericPropertyMatcher().exact();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user