diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-10 14:17:09 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-10 14:17:09 -0800 |
commit | 339ad0d0020cf7173ef7debe32f3cbb8809de5ca (patch) | |
tree | f8e559507cf8f8697922f6e070a731fb54c5f0df /activerecord/lib | |
parent | 61b69338b27e3d865d4ca87269a7c12a74ea32da (diff) | |
download | rails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.tar.gz rails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.tar.bz2 rails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.zip |
fixing tests on 1.8, using a list of lists because order is important
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/log_subscriber.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/log_subscriber.rb b/activerecord/lib/active_record/log_subscriber.rb index 8855798bde..afadbf03ef 100644 --- a/activerecord/lib/active_record/log_subscriber.rb +++ b/activerecord/lib/active_record/log_subscriber.rb @@ -28,7 +28,9 @@ module ActiveRecord binds = nil unless (payload[:binds] || []).empty? - binds = " #{Hash[payload[:binds].map { |col,v| [col.name, v] }]}" + binds = " " + payload[:binds].map { |col,v| + [col.name, v] + }.inspect end if odd? |