Skip to content

Commit 78a62d6

Browse files
authored
Merge pull request #2289 from Fudeveloper/words-correction
Words correction in TypeHandlerRegistryTest.
2 parents 033be14 + c1bd0f2 commit 78a62d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/ibatis/type/TypeHandlerRegistryTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public List<URI> getNullableResult(CallableStatement cs, int columnIndex) {
126126
}
127127

128128
@Test
129-
void shouldBindHandlersToWrapersAndPrimitivesIndividually() {
129+
void shouldBindHandlersToWrappersAndPrimitivesIndividually() {
130130
typeHandlerRegistry.register(Integer.class, DateTypeHandler.class);
131131
assertSame(IntegerTypeHandler.class, typeHandlerRegistry.getTypeHandler(int.class).getClass());
132132
typeHandlerRegistry.register(Integer.class, IntegerTypeHandler.class);
@@ -227,7 +227,7 @@ enum TestEnum {
227227
}
228228

229229
@Test
230-
void shouldAutoRegisterEnutmTypeInMultiThreadEnvironment() throws Exception {
230+
void shouldAutoRegisterEnumTypeInMultiThreadEnvironment() throws Exception {
231231
// gh-1820
232232
ExecutorService executorService = Executors.newCachedThreadPool();
233233
try {

0 commit comments

Comments
 (0)