Skip to content

Commit 16ac763

Browse files
committed
#376: Adjust the assertion of test case for the 3.2.x line
1 parent e2282a2 commit 16ac763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/ibatis/builder/XmlConfigBuilderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void shouldSuccessfullyLoadMinimalXMLConfigFile() throws Exception {
5757
assertNotNull(config);
5858
assertThat(config.getAutoMappingBehavior(), is(AutoMappingBehavior.PARTIAL));
5959
assertThat(config.isCacheEnabled(), is(true));
60-
assertThat(config.getProxyFactory(), is(instanceOf(JavassistProxyFactory.class)));
60+
assertThat(config.getProxyFactory(), is(instanceOf(CglibProxyFactory.class)));
6161
assertThat(config.isLazyLoadingEnabled(), is(false));
6262
assertThat(config.isAggressiveLazyLoading(), is(true));
6363
assertThat(config.isMultipleResultSetsEnabled(), is(true));

0 commit comments

Comments
 (0)