Skip to content

Commit

Permalink
#376: Adjust the assertion of test case for the 3.2.x line
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuki43zoo committed Mar 19, 2015
1 parent e2282a2 commit 16ac763
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void shouldSuccessfullyLoadMinimalXMLConfigFile() throws Exception {
assertNotNull(config);
assertThat(config.getAutoMappingBehavior(), is(AutoMappingBehavior.PARTIAL));
assertThat(config.isCacheEnabled(), is(true));
assertThat(config.getProxyFactory(), is(instanceOf(JavassistProxyFactory.class)));
assertThat(config.getProxyFactory(), is(instanceOf(CglibProxyFactory.class)));
assertThat(config.isLazyLoadingEnabled(), is(false));
assertThat(config.isAggressiveLazyLoading(), is(true));
assertThat(config.isMultipleResultSetsEnabled(), is(true));
Expand Down

0 comments on commit 16ac763

Please sign in to comment.