Skip to content

Commit

Permalink
Fix test for committee members page
Browse files Browse the repository at this point in the history
  • Loading branch information
leesheppard committed Dec 16, 2023
1 parent fd013f0 commit b4896a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/controllers/pages_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
end

describe "on GET to /committee-members" do
before { get :show, params: { id: "committee-members.html" } }
before { get :show, params: { id: "committee-members" } }

it "responds with success and render template" do
expect(response).to be_successful
expect(response).to render_template("committee-members.html")
expect(response).to render_template("committee-members")
end
end

Expand Down

0 comments on commit b4896a8

Please sign in to comment.