diff options
Diffstat (limited to 'spec/features/issues/rss_spec.rb')
-rw-r--r-- | spec/features/issues/rss_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/issues/rss_spec.rb b/spec/features/issues/rss_spec.rb index 0e1383cd607..a6146511043 100644 --- a/spec/features/issues/rss_spec.rb +++ b/spec/features/issues/rss_spec.rb @@ -1,6 +1,6 @@ -require 'spec_helper' +require "spec_helper" -describe 'Project Issues RSS' do +describe "Project Issues RSS" do let(:project) { create(:project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) } let(:path) { project_issues_path(project) } @@ -8,7 +8,7 @@ describe 'Project Issues RSS' do create(:issue, project: project) end - context 'when signed in' do + context "when signed in" do let(:user) { create(:user) } before do @@ -21,7 +21,7 @@ describe 'Project Issues RSS' do it_behaves_like "an autodiscoverable RSS feed with current_user's feed token" end - context 'when signed out' do + context "when signed out" do before do visit path end |