Skip to content

Commit 7fed110

Browse files
committed
Fix Failing jruby mysql test
1 parent ce445e0 commit 7fed110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/adapters/jdbc_mysql_adapter_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
subject(:adapter) { Apartment::Tenant.adapter }
1010

1111
def tenant_names
12-
ActiveRecord::Base.connection.execute('SELECT schema_name FROM information_schema.schemata').collect do |row|
13-
row['schema_name']
12+
ActiveRecord::Base.connection.execute('SELECT SCHEMA_NAME FROM information_schema.schemata').collect do |row|
13+
row['SCHEMA_NAME']
1414
end
1515
end
1616

0 commit comments

Comments
 (0)