Fixed names.

This commit is contained in:
Erik C. Thauvin 2019-04-07 16:32:34 -07:00
parent 8f5860af35
commit 1bbc710897
2 changed files with 3 additions and 3 deletions

View file

@ -42,9 +42,9 @@ import static org.assertj.core.api.Assertions.assertThat;
* @created 2019-04-07 * @created 2019-04-07
* @since 1.0 * @since 1.0
*/ */
public class CurrencyConvertTest { public class CurrentConverterTest {
@Test @Test
public void testLookupImpl() { public void testCurrencyConvertererImpl() {
AbstractModuleTest.testAbstractModule(new CurrencyConverter()); AbstractModuleTest.testAbstractModule(new CurrencyConverter());
} }

View file

@ -44,7 +44,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*/ */
public class JokeTest { public class JokeTest {
@Test @Test
public void testLookupImpl() { public void testJokeImpl() {
AbstractModuleTest.testAbstractModule(new Joke()); AbstractModuleTest.testAbstractModule(new Joke());
} }