See gh-10109
This commit is contained in:
Johnny Lim
2017-08-30 15:25:43 +09:00
committed by Stephane Nicoll
parent 2c97d3a5e9
commit db76112700
13 changed files with 21 additions and 21 deletions

View File

@@ -76,8 +76,8 @@ public class SessionAutoConfigurationJdbcTests
this.context.getBean(JdbcSessionProperties.class).getInitializeSchema())
.isEqualTo(DatabaseInitializationMode.NEVER);
this.thrown.expect(BadSqlGrammarException.class);
assertThat(this.context.getBean(JdbcOperations.class)
.queryForList("select * from SPRING_SESSION")).isEmpty();
this.context.getBean(JdbcOperations.class)
.queryForList("select * from SPRING_SESSION");
}
@Test