groovy-sql: update test dependency (no longer need jdk5 artifact)
Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/8798de71 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/8798de71 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/8798de71 Branch: refs/heads/GROOVY_2_4_X Commit: 8798de7172ade2c6938a72002a13829bd9430e25 Parents: 2b82324 Author: Paul King <pa...@asert.com.au> Authored: Sat Apr 18 08:56:23 2015 +1000 Committer: Paul King <pa...@asert.com.au> Committed: Mon Apr 20 17:22:39 2015 +1000 ---------------------------------------------------------------------- subprojects/groovy-sql/src/spec/test/SqlTest.groovy | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/8798de71/subprojects/groovy-sql/src/spec/test/SqlTest.groovy ---------------------------------------------------------------------- diff --git a/subprojects/groovy-sql/src/spec/test/SqlTest.groovy b/subprojects/groovy-sql/src/spec/test/SqlTest.groovy index 40e237f..22d087f 100644 --- a/subprojects/groovy-sql/src/spec/test/SqlTest.groovy +++ b/subprojects/groovy-sql/src/spec/test/SqlTest.groovy @@ -330,8 +330,6 @@ class SqlTest extends GroovyTestCase { def rowClosure = { row -> assert row.FIRSTNAME == 'Dierk' } sql.eachRow("SELECT firstname FROM Author WHERE firstname = 'Dierk'", metaClosure, rowClosure) // end::sql_basic_rs_metadata3[] - // build currently uses the jdk5 classifier version of hsqldb.jar which is JDBC 3 - // TODO remove this classifier since we now require jdk6+ // tag::sql_basic_table_metadata[] def md = sql.connection.metaData assert md.driverName == 'HSQL Database Engine Driver'