Skip to content

Commit

Permalink
Fix rubocop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dombesz committed Dec 18, 2024
1 parent 3b7b6c3 commit f00f051
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
end

describe "with Edit project permissions" do
let(:permissions) { [:view_project, :view_project_stages_and_gates, :edit_project] }
let(:permissions) { %i[view_project view_project_stages_and_gates edit_project] }

it "does not show the edit buttons" do
overview_page.within_life_cycles_sidebar do
Expand All @@ -73,7 +73,7 @@
end

describe "with sufficient Edit Stages and Gates permissions" do
let(:permissions) { [:view_project, :view_project_stages_and_gates, :edit_project, :edit_project_stages_and_gates] }
let(:permissions) { %i[view_project view_project_stages_and_gates edit_project edit_project_stages_and_gates] }

it "shows the edit buttons" do
overview_page.within_life_cycles_sidebar do
Expand Down

0 comments on commit f00f051

Please sign in to comment.