Updated dependencies and tests

README update
This commit is contained in:
Glenn Renfro
2019-06-06 09:59:53 -04:00
parent 9a0ac2f166
commit 2e8ae1f43c
16 changed files with 30 additions and 30 deletions

View File

@@ -129,10 +129,10 @@ public class SimpleTaskAutoConfigurationTests {
verifyExceptionThrownDefaultExecutable(ApplicationContextException.class, "Failed to start " +
"bean 'taskLifecycleListener'; nested exception is " +
"org.springframework.dao.DataAccessResourceFailureException: " +
"Could not obtain sequence value; nested exception is org.h2.jdbc.JdbcSQLException: " +
"Could not obtain sequence value; nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: " +
"Syntax error in SQL statement \"SELECT FOOBARLESSSEQ.NEXTVAL FROM[*] DUAL \"; " +
"expected \"identifier\"; SQL statement:\n" +
"select foobarlessSEQ.nextval from dual [42001-197]", applicationContextRunner);
"select foobarlessSEQ.nextval from dual [42001-199]", applicationContextRunner);
}
@Test