Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshAntBrown committed May 1, 2024
1 parent c677861 commit a79f39d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/controllers/articles_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

class ArticlesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get articles_index_url
get articles_url
assert_response :success
end

test "should get show" do
get articles_show_url
get article_url(articles(:one))
assert_response :success
end
end

0 comments on commit a79f39d

Please sign in to comment.