diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-12-21 21:30:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-21 21:30:36 +0900 |
commit | a84ced1d7c6f469c641b53aced4b16d4e3a3c6fa (patch) | |
tree | 5a4d9420317091f2708da6c8ca458f561458f2c2 | |
parent | a1c57cf69f2454d5ba3a086237c1c827e6c9de5a (diff) | |
parent | 59effbed3359d6e0b1168274fc9f53e8c9d90060 (diff) | |
download | rails-a84ced1d7c6f469c641b53aced4b16d4e3a3c6fa.tar.gz rails-a84ced1d7c6f469c641b53aced4b16d4e3a3c6fa.tar.bz2 rails-a84ced1d7c6f469c641b53aced4b16d4e3a3c6fa.zip |
Merge pull request #34771 from utilum/mismatched_indentation
Fix Ruby 2.6 `warning: mismatched indentations at 'rescue' with 'def' at 15`.
-rw-r--r-- | activesupport/test/core_ext/load_error_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/load_error_test.rb b/activesupport/test/core_ext/load_error_test.rb index 8afff4fb9c..6d3726e407 100644 --- a/activesupport/test/core_ext/load_error_test.rb +++ b/activesupport/test/core_ext/load_error_test.rb @@ -14,8 +14,8 @@ class TestLoadError < ActiveSupport::TestCase def test_path load "nor/this/one.rb" - rescue LoadError => e - assert_equal "nor/this/one.rb", e.path + rescue LoadError => e + assert_equal "nor/this/one.rb", e.path end def test_is_missing_with_nil_path |