fix typos in test method names
`Ambiguious` becomes -> `Ambiguous`
This commit is contained in:
parent
cf754c4ef6
commit
e056a75d4e
1 changed files with 3 additions and 3 deletions
|
@ -204,7 +204,7 @@ public class CommandDispatcherTest {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Test
|
||||
public void testExecuteAmbiguiousParentSubcommand() throws Exception {
|
||||
public void testExecuteAmbiguousParentSubcommand() throws Exception {
|
||||
final Command<Object> subCommand = mock(Command.class);
|
||||
when(subCommand.run(any())).thenReturn(100);
|
||||
|
||||
|
@ -230,7 +230,7 @@ public class CommandDispatcherTest {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Test
|
||||
public void testExecuteAmbiguiousParentSubcommandViaRedirect() throws Exception {
|
||||
public void testExecuteAmbiguousParentSubcommandViaRedirect() throws Exception {
|
||||
final Command<Object> subCommand = mock(Command.class);
|
||||
when(subCommand.run(any())).thenReturn(100);
|
||||
|
||||
|
@ -400,4 +400,4 @@ public class CommandDispatcherTest {
|
|||
public void testFindNodeDoesntExist() {
|
||||
assertThat(subject.findNode(Lists.newArrayList("foo", "bar")), is(nullValue()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue