aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_conformance_test.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/test/multibyte_conformance_test.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/test/multibyte_conformance_test.rb')
-rw-r--r--activesupport/test/multibyte_conformance_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/multibyte_conformance_test.rb b/activesupport/test/multibyte_conformance_test.rb
index aba81b8248..f7bd21c8ab 100644
--- a/activesupport/test/multibyte_conformance_test.rb
+++ b/activesupport/test/multibyte_conformance_test.rb
@@ -115,7 +115,7 @@ class MultibyteConformanceTest < ActiveSupport::TestCase
next if (line.empty? || line =~ /^\#/)
cols, comment = line.split("#")
- cols = cols.split(";").map{|e| e.strip}.reject{|e| e.empty? }
+ cols = cols.split(";").map(&:strip).reject(&:empty?)
next unless cols.length == 5
# codepoints are in hex in the test suite, pack wants them as integers