diff options
author | Lee Bankewitz <lee@weplay.com> | 2009-08-10 14:51:54 -0400 |
---|---|---|
committer | Lee Bankewitz <lee@weplay.com> | 2009-08-10 15:58:54 -0400 |
commit | 724b48620c5cf21920717d66eea6e7cd4148b535 (patch) | |
tree | b936ecb0a42eb1d169c404c9d0cac6258906bca1 /spec/connections | |
parent | 019f35a266c8e27e6dcf443b3c4d92648b96ce89 (diff) | |
download | rails-724b48620c5cf21920717d66eea6e7cd4148b535.tar.gz rails-724b48620c5cf21920717d66eea6e7cd4148b535.tar.bz2 rails-724b48620c5cf21920717d66eea6e7cd4148b535.zip |
Bug fix: Don't use #delegate to declare delegations when intentionally delegating to nil
This accounts for a behavior change after Rails 2.3
Diffstat (limited to 'spec/connections')
-rw-r--r-- | spec/connections/mysql_connection.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/connections/mysql_connection.rb b/spec/connections/mysql_connection.rb index 6e2950f7dc..bcba2b3843 100644 --- a/spec/connections/mysql_connection.rb +++ b/spec/connections/mysql_connection.rb @@ -7,7 +7,7 @@ ActiveRecord::Base.logger = Logger.new("debug.log") ActiveRecord::Base.configurations = { 'unit' => { :adapter => 'mysql', - :username => 'rails', + :username => 'root', :encoding => 'utf8', :database => 'arel_unit', } |