From 7a1254cdb527ca29e05c74451c2d3e6448dac1ec Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sat, 26 Jan 2019 10:12:52 +0900 Subject: Loosen check of error cause file Since "actionpack" is not included in isolation test. Ref: https://travis-ci.org/rails/rails/jobs/484514392#L2715 --- actionpack/test/dispatch/debug_exceptions_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb index abb42af53f..6914fb66f9 100644 --- a/actionpack/test/dispatch/debug_exceptions_test.rb +++ b/actionpack/test/dispatch/debug_exceptions_test.rb @@ -323,7 +323,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest get "/not_found_original_exception", headers: { "action_dispatch.show_exceptions" => true } assert_response 404 assert_match %r{AbstractController::ActionNotFound}, body - assert_match %r{Showing /.*/actionpack/test/dispatch/debug_exceptions_test.rb}, body + assert_match %r{Showing .*test/dispatch/debug_exceptions_test.rb}, body end test "show the last exception and cause even when the cause is mapped to resque_responses" do @@ -494,7 +494,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest assert_select "#Application-Trace-0" do assert_select "code", /syntax error, unexpected/ end - assert_match %r{Showing /.*/actionpack/test/dispatch/debug_exceptions_test.rb}, body + assert_match %r{Showing .*test/dispatch/debug_exceptions_test.rb}, body end test "debug exceptions app shows user code that caused the error in source view" do -- cgit v1.2.3