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/004e0329 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/004e0329 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/004e0329 Branch: refs/heads/groovy_2_4_X Commit: 004e0329346afe35d7885773f384b3da39d43170 Parents: d6cd40c Author: Paul King <[email protected]> Authored: Sat Apr 18 08:56:23 2015 +1000 Committer: Paul King <[email protected]> Committed: Sat Apr 18 09:09:33 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/004e0329/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'
