From 59effbed3359d6e0b1168274fc9f53e8c9d90060 Mon Sep 17 00:00:00 2001 From: utilum Date: Fri, 21 Dec 2018 12:28:33 +0100 Subject: Fixes `warning: mismatched indentations at 'rescue' with 'def' at 15`. See https://travis-ci.org/rails/rails/jobs/470890129#L2361 --- activesupport/test/core_ext/load_error_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activesupport/test/core_ext/load_error_test.rb') 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 -- cgit v1.2.3