diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-11-09 23:15:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 23:15:12 -0500 |
commit | 8c7967c9b916fe625e7ce10591b101abde3be4f5 (patch) | |
tree | 9e611068c3054cd192307870c4645bc8dd311dbf /activesupport | |
parent | 78fc8530d4aa3d5d82da78fc0a763ff1d0553121 (diff) | |
parent | 8c5115f95daa86cc9e79d6ad5c1076fee0f70903 (diff) | |
download | rails-8c7967c9b916fe625e7ce10591b101abde3be4f5.tar.gz rails-8c7967c9b916fe625e7ce10591b101abde3be4f5.tar.bz2 rails-8c7967c9b916fe625e7ce10591b101abde3be4f5.zip |
Merge pull request #31111 from koic/bump_rubocop_to_0_51_0
Bump RuboCop to 0.51.0
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/core_ext/load_error_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/load_error_test.rb b/activesupport/test/core_ext/load_error_test.rb index 4fdd228ff8..41b11d0c33 100644 --- a/activesupport/test/core_ext/load_error_test.rb +++ b/activesupport/test/core_ext/load_error_test.rb @@ -5,7 +5,7 @@ require "active_support/core_ext/load_error" class TestLoadError < ActiveSupport::TestCase def test_with_require - assert_raise(LoadError) { require 'no_this_file_don\'t_exist' } + assert_raise(LoadError) { require "no_this_file_don't_exist" } end def test_with_load assert_raise(LoadError) { load "nor_does_this_one" } |