Skip to content

Commit

Permalink
Revert "Fix test for change to circular loading message"
Browse files Browse the repository at this point in the history
This reverts commit 97bc205.

44103bc was reverted in a33e934 so this test no longer passes.
  • Loading branch information
eileencodes committed Dec 15, 2017
1 parent a33e934 commit afae7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activesupport/test/dependencies_test.rb
Expand Up @@ -154,7 +154,7 @@ def test_mutual_dependencies_dont_infinite_loop
def test_circular_autoloading_detection def test_circular_autoloading_detection
with_autoloading_fixtures do with_autoloading_fixtures do
e = assert_raise(RuntimeError) { Circular1 } e = assert_raise(RuntimeError) { Circular1 }
assert_match /Circular dependency detected while autoloading constant Circular1. Loading list:/, e.message assert_equal "Circular dependency detected while autoloading constant Circular1", e.message
end end
end end


Expand Down

0 comments on commit afae7f9

Please sign in to comment.