aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorKuldeep Aggarwal <kd.engineer@yahoo.co.in>2013-12-04 22:32:53 +0530
committerKuldeep Aggarwal <kd.engineer@yahoo.co.in>2013-12-04 22:32:53 +0530
commit8195196e2a6b5149ee33fa905e9f86561a6e6a40 (patch)
tree410bd22317584d1c2674dd14d829724cdc077750 /activesupport
parent2e7756aa2f08b7750939594ba22dc8ff20efc0e8 (diff)
downloadrails-8195196e2a6b5149ee33fa905e9f86561a6e6a40.tar.gz
rails-8195196e2a6b5149ee33fa905e9f86561a6e6a40.tar.bz2
rails-8195196e2a6b5149ee33fa905e9f86561a6e6a40.zip
removed duplicate test case
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/number_helper_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/test/number_helper_test.rb b/activesupport/test/number_helper_test.rb
index 61ca556fcd..111db59b2b 100644
--- a/activesupport/test/number_helper_test.rb
+++ b/activesupport/test/number_helper_test.rb
@@ -102,7 +102,6 @@ module ActiveSupport
assert_equal '12 345 678', number_helper.number_to_delimited(12345678, :delimiter => ' ')
assert_equal '12,345,678-05', number_helper.number_to_delimited(12345678.05, :separator => '-')
assert_equal '12.345.678,05', number_helper.number_to_delimited(12345678.05, :separator => ',', :delimiter => '.')
- assert_equal '12.345.678,05', number_helper.number_to_delimited(12345678.05, :delimiter => '.', :separator => ',')
end
end