Fix test assertion
This commit is contained in:
parent
368f279788
commit
f9caade3cc
|
|
@ -92,7 +92,7 @@ public class CrshPropertiesTests {
|
|||
binder.bind(new MutablePropertyValues(Collections.singletonMap("shell.config_path_patterns",
|
||||
"pattern1, pattern2")));
|
||||
assertFalse(binder.getBindingResult().hasErrors());
|
||||
assertEquals(2, props.getConfigPathPatterns().length, 2);
|
||||
assertEquals(2, props.getConfigPathPatterns().length);
|
||||
Assert.assertArrayEquals(new String[] { "pattern1", "pattern2" }, props.getConfigPathPatterns());
|
||||
}
|
||||
|
||||
|
|
@ -104,7 +104,7 @@ public class CrshPropertiesTests {
|
|||
binder.bind(new MutablePropertyValues(Collections.singletonMap("shell.disabled_plugins",
|
||||
"pattern1, pattern2")));
|
||||
assertFalse(binder.getBindingResult().hasErrors());
|
||||
assertEquals(2, props.getDisabledPlugins().length, 2);
|
||||
assertEquals(2, props.getDisabledPlugins().length);
|
||||
assertArrayEquals(new String[] { "pattern1", "pattern2" }, props.getDisabledPlugins());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue