Skip to content

Commit

Permalink
Fix specs that didn't require a project to be present
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-contreras committed Jul 7, 2023
1 parent e68220d commit 8c1467e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/meeting/spec/models/meeting_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
it { is_expected.to validate_presence_of :title }

describe 'new instance' do
let(:meeting) { build(:meeting, title: 'dingens') }
let(:meeting) { build(:meeting, project:, title: 'dingens') }

describe 'to_s' do
it { expect(meeting.to_s).to eq('dingens') }
Expand Down

0 comments on commit 8c1467e

Please sign in to comment.