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")
|
@SuppressWarnings("unchecked")
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteAmbiguiousParentSubcommand() throws Exception {
|
public void testExecuteAmbiguousParentSubcommand() throws Exception {
|
||||||
final Command<Object> subCommand = mock(Command.class);
|
final Command<Object> subCommand = mock(Command.class);
|
||||||
when(subCommand.run(any())).thenReturn(100);
|
when(subCommand.run(any())).thenReturn(100);
|
||||||
|
|
||||||
|
@ -230,7 +230,7 @@ public class CommandDispatcherTest {
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteAmbiguiousParentSubcommandViaRedirect() throws Exception {
|
public void testExecuteAmbiguousParentSubcommandViaRedirect() throws Exception {
|
||||||
final Command<Object> subCommand = mock(Command.class);
|
final Command<Object> subCommand = mock(Command.class);
|
||||||
when(subCommand.run(any())).thenReturn(100);
|
when(subCommand.run(any())).thenReturn(100);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue