aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/abstract_unit.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb
index 1254859a5c..9a1f05500b 100644
--- a/actionpack/test/abstract_unit.rb
+++ b/actionpack/test/abstract_unit.rb
@@ -450,7 +450,10 @@ class ForkingExecutor
reporter.synchronize { reporter.record result }
end
- def << o; @queue << o; end
+ def << o
+ o[2] = DRbObject.new(o[2]) if o
+ @queue << o
+ end
def pop; @queue.pop; end
end