Skip to content

Commit

Permalink
Fix rubocop offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed May 17, 2024
1 parent 0cafe91 commit 8e5de10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional/terms_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_accept

get :accept

assert_response 302
assert_response :found
end

def test_reject
Expand All @@ -33,7 +33,7 @@ def test_reject

get :reject

assert_response 302
assert_response :found
end

def test_reset_should_require_admin
Expand All @@ -44,6 +44,6 @@ def test_reset_should_require_admin

get :reset

assert_response 403
assert_response :forbidden
end
end

0 comments on commit 8e5de10

Please sign in to comment.