1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixes warning: mismatched indentations at 'rescue' with 'def' at 15.

See https://travis-ci.org/rails/rails/jobs/470890129#L2361
This commit is contained in:
utilum 2018-12-21 12:28:33 +01:00
parent a1c57cf69f
commit 59effbed33

View file

@ -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