From d4c8068675f0b6be025590471b40ff175daa845e Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 17 Jul 2014 18:43:46 -0700 Subject: [PATCH] reporting is only done in one thread, so we can safely remove the lock (I think) --- actionpack/test/abstract_unit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 9a1f05500b..0f7b3a08e1 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -447,7 +447,7 @@ def initialize end def record reporter, result - reporter.synchronize { reporter.record result } + reporter.record result end def << o