tests: fix broken tests.

This commit is contained in:
evazion
2022-04-18 00:31:31 -05:00
parent cd22c8eb1a
commit 6c5dd5ffed
3 changed files with 5 additions and 3 deletions

View File

@@ -238,7 +238,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("Can't verify CSRF token authenticity.", css_select("p").first.content)
assert_equal("Error: Can't verify CSRF token authenticity.", css_select("p").first.content)
assert_equal(false, @user.reload.enable_safe_mode)
end
end