aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/assertions.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-11-29 09:04:47 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-11-29 09:04:47 -0200
commit390449ab8c55dacc08517bc270c6203bb1f50e02 (patch)
treee87455ea620155254511180cc1f08c5544ed195c /activesupport/lib/active_support/testing/assertions.rb
parent56e47cf66d2e3009b4032d0cd2ceb1a6e5e42573 (diff)
parentd1374f99bf3090f3e659687c112ed0c5c0865cfb (diff)
downloadrails-390449ab8c55dacc08517bc270c6203bb1f50e02.tar.gz
rails-390449ab8c55dacc08517bc270c6203bb1f50e02.tar.bz2
rails-390449ab8c55dacc08517bc270c6203bb1f50e02.zip
Merge pull request #16833 from sferik/symbol_to_proc
Pass symbol as an argument instead of a block
Diffstat (limited to 'activesupport/lib/active_support/testing/assertions.rb')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index 11cca82995..8b649c193f 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -66,7 +66,7 @@ module ActiveSupport
exps = expressions.map { |e|
e.respond_to?(:call) ? e : lambda { eval(e, block.binding) }
}
- before = exps.map { |e| e.call }
+ before = exps.map(&:call)
yield