From 49f0c1efd97c91b8de224b8aaecc9a774ce82132 Mon Sep 17 00:00:00 2001 From: Cosmas Wasswa Date: Tue, 3 Oct 2023 12:38:32 +0300 Subject: [PATCH] Fix linter bugs --- spec/features/user_show_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/user_show_spec.rb b/spec/features/user_show_spec.rb index 644aed1..54461d2 100644 --- a/spec/features/user_show_spec.rb +++ b/spec/features/user_show_spec.rb @@ -68,7 +68,7 @@ it 'When I click to see all posts, it redirects me to the user posts index page.' do visit user_path(@user1) - click_link "See all posts" + click_link 'See all posts' expect(page).to have_current_path(user_posts_path(@user1)) end end