From: Andy Allan Date: Wed, 29 Nov 2017 17:37:29 +0000 (+0000) Subject: Index page no longer redirects when there's no issues. X-Git-Tag: live~2957^2~79 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8e859b0f1d69c46eba4ebd3a676bbd2b8300b8ad Index page no longer redirects when there's no issues. --- diff --git a/test/controllers/issues_controller_test.rb b/test/controllers/issues_controller_test.rb index c57ee53a3..3a38ea812 100644 --- a/test/controllers/issues_controller_test.rb +++ b/test/controllers/issues_controller_test.rb @@ -21,16 +21,12 @@ class IssuesControllerTest < ActionController::TestCase # Access issues_path by admin session[:user] = create(:administrator_user).id get :index - # this is redirected because there are no issues?! - assert_response :redirect - assert_redirected_to issues_path + assert_response :success # Access issues_path by moderator session[:user] = create(:moderator_user).id get :index - # this is redirected because there are no issues?! - assert_response :redirect - assert_redirected_to issues_path + assert_response :success end def test_new_issue_without_login