diff options
author | Prem Sichanugrist <s@sikachu.com> | 2011-04-11 12:35:20 +0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-04-10 22:40:21 -0700 |
commit | d6edaeeaf8b6c0f0b741c0827ab6e091bdd4e197 (patch) | |
tree | 847ef31b04ab6fc967fd4256d2eb71c9d66e1126 /activesupport/bin | |
parent | 743b6631dfc5b91b711f09eb13099cdf9dd89c1b (diff) | |
download | rails-d6edaeeaf8b6c0f0b741c0827ab6e091bdd4e197.tar.gz rails-d6edaeeaf8b6c0f0b741c0827ab6e091bdd4e197.tar.bz2 rails-d6edaeeaf8b6c0f0b741c0827ab6e091bdd4e197.zip |
Fix failing test case on master
It turned out that I overlook at some replacements ..
Diffstat (limited to 'activesupport/bin')
-rw-r--r-- | activesupport/bin/generate_tables | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/bin/generate_tables b/activesupport/bin/generate_tables index 0ca2f52363..5fefa429df 100644 --- a/activesupport/bin/generate_tables +++ b/activesupport/bin/generate_tables @@ -105,7 +105,7 @@ module ActiveSupport def normalize_boundary_map @ucd.boundary.each do |k,v| - if k.in(:lf, :cr) + if [:lf, :cr].include? k @ucd.boundary[k] = v[0] end end |