Skip to content

Commit

Permalink
Merge pull request #2289 from Fudeveloper/words-correction
Browse files Browse the repository at this point in the history
Words correction in TypeHandlerRegistryTest.
  • Loading branch information
hazendaz committed Jul 16, 2021
2 parents 033be14 + c1bd0f2 commit 78a62d6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -126,7 +126,7 @@ public List<URI> getNullableResult(CallableStatement cs, int columnIndex) {
}

@Test
void shouldBindHandlersToWrapersAndPrimitivesIndividually() {
void shouldBindHandlersToWrappersAndPrimitivesIndividually() {
typeHandlerRegistry.register(Integer.class, DateTypeHandler.class);
assertSame(IntegerTypeHandler.class, typeHandlerRegistry.getTypeHandler(int.class).getClass());
typeHandlerRegistry.register(Integer.class, IntegerTypeHandler.class);
Expand Down Expand Up @@ -227,7 +227,7 @@ enum TestEnum {
}

@Test
void shouldAutoRegisterEnutmTypeInMultiThreadEnvironment() throws Exception {
void shouldAutoRegisterEnumTypeInMultiThreadEnvironment() throws Exception {
// gh-1820
ExecutorService executorService = Executors.newCachedThreadPool();
try {
Expand Down

0 comments on commit 78a62d6

Please sign in to comment.