Skip to content

Commit

Permalink
AO3-6791 rubocop fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lou-codes committed Feb 2, 2025
1 parent 0f418a6 commit b787cb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/controllers/pseuds_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@
end

it "returns NotFound error when pseud doesn't exist" do
expect { get :edit, params: { user_id: "fake_user", id: pseud } }.to raise_error(ActiveRecord::RecordNotFound)
expect { get :edit, params: { user_id: "fake_user", id: pseud } }
.to raise_error(ActiveRecord::RecordNotFound)
end
end
end
Expand Down

0 comments on commit b787cb8

Please sign in to comment.