diff --git a/frontend/app/components/comment-form/__subscribe-by-rss/comment-form__subscribe-by-rss.test.tsx b/frontend/app/components/comment-form/__subscribe-by-rss/comment-form__subscribe-by-rss.test.tsx index 1e639cc7..f1658e74 100644 --- a/frontend/app/components/comment-form/__subscribe-by-rss/comment-form__subscribe-by-rss.test.tsx +++ b/frontend/app/components/comment-form/__subscribe-by-rss/comment-form__subscribe-by-rss.test.tsx @@ -31,9 +31,9 @@ describe('', () => { expect(wrapper.find('.comment-form__rss-dropdown__link')).toHaveLength(3); }); - it('should have userId in site link', () => { - expect(wrapper.find('.comment-form__rss-dropdown__link').at(1).prop('href')).toEqual( - createSubscribeUrl('site', '&user=user-1') + it('should have userId in Replies link', () => { + expect(wrapper.find('.comment-form__rss-dropdown__link').at(2).prop('href')).toEqual( + createSubscribeUrl('reply', '&user=user-1') ); }); });