Skip to content

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
microstudi committed Jul 5, 2024
1 parent dfe3aa1 commit 200577d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/system/view_events_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
describe "User interact with the calendar" do
let!(:organization) { create(:organization) }
let!(:user) { create(:user, :confirmed, organization:) }
let!(:participatory_process) { create(:participatory_process, :with_steps, :active, :published, organization:) }
let!(:participatory_process) { create(:participatory_process, :with_steps, :active, :published, skip_injection: true, organization:) }
let!(:component) { create(:meeting_component, participatory_space: participatory_process) }
let!(:meeting) { create(:meeting, :published, component:) }
let!(:unpublished_meeting) { create(:meeting, component:) }
let!(:meeting) { create(:meeting, :published, component:, skip_injection: true) }
let!(:unpublished_meeting) { create(:meeting, component:, skip_injection: true) }
let!(:external_event) { create(:external_event, organization:) }

before do
Expand Down

0 comments on commit 200577d

Please sign in to comment.