aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/load_error_test.rb
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2018-12-21 12:28:33 +0100
committerutilum <oz@utilum.com>2018-12-21 12:28:33 +0100
commit59effbed3359d6e0b1168274fc9f53e8c9d90060 (patch)
tree5a4d9420317091f2708da6c8ca458f561458f2c2 /activesupport/test/core_ext/load_error_test.rb
parenta1c57cf69f2454d5ba3a086237c1c827e6c9de5a (diff)
downloadrails-59effbed3359d6e0b1168274fc9f53e8c9d90060.tar.gz
rails-59effbed3359d6e0b1168274fc9f53e8c9d90060.tar.bz2
rails-59effbed3359d6e0b1168274fc9f53e8c9d90060.zip
Fixes `warning: mismatched indentations at 'rescue' with 'def' at 15`.
See https://travis-ci.org/rails/rails/jobs/470890129#L2361
Diffstat (limited to 'activesupport/test/core_ext/load_error_test.rb')
-rw-r--r--activesupport/test/core_ext/load_error_test.rb4
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