aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-03-05 04:38:19 +0900
committerGitHub <noreply@github.com>2018-03-05 04:38:19 +0900
commit78fe5778f6fda6f203f4e1f5c13139f8a5308619 (patch)
tree2e2ec788783b26e3499325f5207248a5fcdc8353 /actionview/test
parent4b09ef7b361edce985e72143ea9cb6d1c93de61e (diff)
parentce03e7d991a703c8d2e9c721902f312ccaeb5123 (diff)
downloadrails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.tar.gz
rails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.tar.bz2
rails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.zip
Merge pull request #32165 from bogdanvlviv/fix-occurrences-Fixnum-Bignum
Fix occurrences Fixnum|Bignum
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/template/date_helper_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/test/template/date_helper_test.rb b/actionview/test/template/date_helper_test.rb
index 94357d5f90..4b4939d705 100644
--- a/actionview/test/template/date_helper_test.rb
+++ b/actionview/test/template/date_helper_test.rb
@@ -141,10 +141,10 @@ class DateHelperTest < ActionView::TestCase
end
def test_distance_in_words_doesnt_use_the_quotient_operator
- rubinius_skip "Date is written in Ruby and relies on Fixnum#/"
- jruby_skip "Date is written in Ruby and relies on Fixnum#/"
+ rubinius_skip "Date is written in Ruby and relies on Integer#/"
+ jruby_skip "Date is written in Ruby and relies on Integer#/"
- # Make sure that we avoid {Integer,Fixnum}#/ (redefined by mathn)
+ # Make sure that we avoid Integer#/ (redefined by mathn)
Integer.send :private, :/
from = Time.utc(2004, 6, 6, 21, 45, 0)