From 2cac87defad92a97af5700a2d70332c5e2ff51ed Mon Sep 17 00:00:00 2001 From: Phil Cohen Date: Thu, 24 Jan 2013 19:59:23 -0800 Subject: [PATCH] remove "jdbc" prefix from jruby database.yml --- test/ci/database.mysql.jruby.yml | 2 +- test/ci/database.postgres.jruby.yml | 2 +- test/ci/database.sqlite.jruby.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/ci/database.mysql.jruby.yml b/test/ci/database.mysql.jruby.yml index 101d7ee..0a2d6a0 100644 --- a/test/ci/database.mysql.jruby.yml +++ b/test/ci/database.mysql.jruby.yml @@ -1,6 +1,6 @@ # Travis CI test: - adapter: jdbcmysql + adapter: mysql database: thincloud_authentication_test username: root encoding: utf8 diff --git a/test/ci/database.postgres.jruby.yml b/test/ci/database.postgres.jruby.yml index d78c793..38df76c 100644 --- a/test/ci/database.postgres.jruby.yml +++ b/test/ci/database.postgres.jruby.yml @@ -1,6 +1,6 @@ # Travis CI test: - adapter: jdbcpostgresql + adapter: postgresql database: thincloud_authentication_test username: postgres encoding: unicode diff --git a/test/ci/database.sqlite.jruby.yml b/test/ci/database.sqlite.jruby.yml index 2311feb..f87e12c 100644 --- a/test/ci/database.sqlite.jruby.yml +++ b/test/ci/database.sqlite.jruby.yml @@ -1,6 +1,6 @@ # Travis CI test: - adapter: jdbcsqlite3 + adapter: sqlite3 database: db/test.sqlite3 pool: 5 timeout: 5000