@@ -94,7 +94,7 @@ public void shouldSuccessfullyLoadMinimalXMLConfigFile() throws Exception {
94
94
assertThat (config .getJdbcTypeForNull (), is (JdbcType .OTHER ));
95
95
assertThat (config .getLazyLoadTriggerMethods (), is ((Set <String >) new HashSet <String >(Arrays .asList ("equals" , "clone" , "hashCode" , "toString" ))));
96
96
assertThat (config .isSafeResultHandlerEnabled (), is (true ));
97
- assertThat (config .getDefaultScriptingLanuageInstance (), is (instanceOf (XMLLanguageDriver .class )));
97
+ assertThat (config .getDefaultScriptingLanguageInstance (), is (instanceOf (XMLLanguageDriver .class )));
98
98
assertThat (config .isCallSettersOnNulls (), is (false ));
99
99
assertNull (config .getLogPrefix ());
100
100
assertNull (config .getLogImpl ());
@@ -185,7 +185,7 @@ public void shouldSuccessfullyLoadXMLConfigFile() throws Exception {
185
185
assertThat (config .getJdbcTypeForNull (), is (JdbcType .NULL ));
186
186
assertThat (config .getLazyLoadTriggerMethods (), is ((Set <String >) new HashSet <String >(Arrays .asList ("equals" , "clone" , "hashCode" , "toString" , "xxx" ))));
187
187
assertThat (config .isSafeResultHandlerEnabled (), is (false ));
188
- assertThat (config .getDefaultScriptingLanuageInstance (), is (instanceOf (RawLanguageDriver .class )));
188
+ assertThat (config .getDefaultScriptingLanguageInstance (), is (instanceOf (RawLanguageDriver .class )));
189
189
assertThat (config .isCallSettersOnNulls (), is (true ));
190
190
assertThat (config .getLogPrefix (), is ("mybatis_" ));
191
191
assertThat (config .getLogImpl ().getName (), is (Slf4jImpl .class .getName ()));
0 commit comments