diff --git a/src/test/java/org/apache/ibatis/type/TypeHandlerRegistryTest.java b/src/test/java/org/apache/ibatis/type/TypeHandlerRegistryTest.java index 2dc4a6f2031..95980cff420 100644 --- a/src/test/java/org/apache/ibatis/type/TypeHandlerRegistryTest.java +++ b/src/test/java/org/apache/ibatis/type/TypeHandlerRegistryTest.java @@ -126,7 +126,7 @@ public List 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); @@ -227,7 +227,7 @@ enum TestEnum { } @Test - void shouldAutoRegisterEnutmTypeInMultiThreadEnvironment() throws Exception { + void shouldAutoRegisterEnumTypeInMultiThreadEnvironment() throws Exception { // gh-1820 ExecutorService executorService = Executors.newCachedThreadPool(); try {