From a79f39d75b15f10f00a23f7b22997e42f1671528 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Wed, 1 May 2024 11:15:54 +0100 Subject: [PATCH] Fix failing tests --- test/controllers/articles_controller_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/controllers/articles_controller_test.rb b/test/controllers/articles_controller_test.rb index 0944f4f2..2f0f03f5 100644 --- a/test/controllers/articles_controller_test.rb +++ b/test/controllers/articles_controller_test.rb @@ -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