Skip to content

Commit

Permalink
run standard:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ptrboro committed Oct 24, 2023
1 parent 43802e4 commit 8ef216c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/factories.rb
Expand Up @@ -13,7 +13,7 @@
end

trait :with_adopter_profile do
adopter_profile { association :adopter_profile, adopter_account: instance}
adopter_profile { association :adopter_profile, adopter_account: instance }
end
end

Expand Down Expand Up @@ -148,7 +148,7 @@
verified { true }

organization { ActsAsTenant.test_tenant }
user { association :user, organization: organization}
user { association :user, organization: organization }

trait :unverified do
verified { false }
Expand All @@ -172,15 +172,15 @@
organization { ActsAsTenant.test_tenant }

trait :verified_staff do
staff_account { association :staff_account, organization: organization}
staff_account { association :staff_account, organization: organization }
end

trait :staff_admin do
staff_account { association :staff_account, :admin, organization: organization}
staff_account { association :staff_account, :admin, organization: organization }
end

trait :unverified_staff do
staff_account { association :staff_account, :unverified, organization: organization}
staff_account { association :staff_account, :unverified, organization: organization }
end

trait :adopter_without_profile do
Expand Down

0 comments on commit 8ef216c

Please sign in to comment.