fix typos in test method names

`Ambiguious` becomes -> `Ambiguous`
This commit is contained in:
Robin Brämer 2021-06-01 22:44:36 +02:00 committed by GitHub
parent cf754c4ef6
commit e056a75d4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()));
}
}
}