tests: fix broken tests.

This commit is contained in:
evazion
2022-01-07 14:42:17 -06:00
parent cae6599631
commit 450594b803
2 changed files with 2 additions and 2 deletions

View File

@@ -189,7 +189,7 @@ class ApplicationControllerTest < ActionDispatch::IntegrationTest
# try to submit a form with cookies but without the csrf token
put user_path(@user), headers: { HTTP_COOKIE: headers["Set-Cookie"] }, params: { user: { enable_safe_mode: "true" } }
assert_response 403
assert_equal("ActionController::InvalidAuthenticityToken", css_select("p").first.content)
assert_equal("Can't verify CSRF token authenticity.", css_select("p").first.content)
assert_equal(false, @user.reload.enable_safe_mode)
end
end