Skip to content

Commit

Permalink
fix(activity_resource_spec): fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
guidojw committed Oct 13, 2023
1 parent c915945 commit f6377e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/resources/v1/activity_resource_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
let(:sort) { { form: { respond_until: :desc } } }
let(:form) { create(:form, respond_until: 1.day.from_now) }
let(:other_form) { create(:form, respond_until: 2.days.from_now) }
let(:activity) { create(:activity: form: form) }
let(:other_activity) { create(:activity: form: other_form) }
let(:activity) { create(:activity, form: form) }
let(:other_activity) { create(:activity, form: other_form) }

before do
activity
Expand Down

0 comments on commit f6377e9

Please sign in to comment.