Commit 5f02c994 authored by allison.browne's avatar allison.browne

Factory syntax fix

parent acc32dab
...@@ -4,15 +4,15 @@ FactoryBot.define do ...@@ -4,15 +4,15 @@ FactoryBot.define do
factory :zoom_meeting do factory :zoom_meeting do
project { issue.project } project { issue.project }
issue issue
url 'https://zoom.us/j/123456789' url { 'https://zoom.us/j/123456789' }
issue_status :added issue_status { :added }
trait :added_to_issue do trait :added_to_issue do
issue_status :added issue_status { :added }
end end
trait :removed_from_issue do trait :removed_from_issue do
issue_status :removed issue_status { :removed }
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment