diff options
-rw-r--r-- | activesupport/lib/active_support/testing/performance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb index f6945e8466..71d49459ef 100644 --- a/activesupport/lib/active_support/testing/performance.rb +++ b/activesupport/lib/active_support/testing/performance.rb @@ -231,7 +231,7 @@ module ActiveSupport class Amount < Base def format(measurement) - number_with_delimiter(measurement) + number_with_delimiter(measurement.floor) end end |