diff options
author | Brian Durand <brian@embellishedvisions.com> | 2012-09-30 21:56:47 -0700 |
---|---|---|
committer | Brian Durand <brian@embellishedvisions.com> | 2012-09-30 21:56:47 -0700 |
commit | b784900208c0ea4343a75fa1cefdb1872fa14f7b (patch) | |
tree | a5106f9936361ac3820630ce1dc8ca64e8532e03 /activesupport/lib | |
parent | 34239cc511ac8de9a23e84fd6835a2f2440d2863 (diff) | |
download | rails-b784900208c0ea4343a75fa1cefdb1872fa14f7b.tar.gz rails-b784900208c0ea4343a75fa1cefdb1872fa14f7b.tar.bz2 rails-b784900208c0ea4343a75fa1cefdb1872fa14f7b.zip |
fix broken cache tests
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index a681a8d6a9..690e5ce194 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -591,9 +591,9 @@ module ActiveSupport when NilClass 0 when String - value.bytesize + @v.bytesize else - @s = Marshal.dump(value).bytesize + @s = Marshal.dump(@v).bytesize end end end |