Skip to content

Commit 5f982fb

Browse files
authored
Merge pull request #2033 from nothingzhl/unit_fix
Corrected a typo in method name.
2 parents 5fa2382 + b9cbb6a commit 5f982fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/ibatis/reflection/factory/DefaultObjectFactoryTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -62,7 +62,7 @@ void createClassThrowsProperErrorMsg() {
6262
}
6363

6464
@Test
65-
void creatHashMap() {
65+
void createHashMap() {
6666
DefaultObjectFactory defaultObjectFactory=new DefaultObjectFactory();
6767
Map map= defaultObjectFactory.create(Map.class,null,null);
6868
Assertions.assertTrue(map instanceof HashMap, "Should be HashMap");

0 commit comments

Comments
 (0)