Skip to content

Commit

Permalink
Rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
veezus committed Apr 3, 2024
1 parent 61d5d53 commit a9a1405
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/models/partners/profile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class Profile < Base
"2YCOLLEGE" => "Two-Year College",
"WIC" => "Women, Infants and Children",
"OTHER" => "Other"
}, prefix: 'agency_type'
}, prefix: "agency_type"

self.ignored_columns = %w[
evidence_based_description
Expand Down
2 changes: 1 addition & 1 deletion spec/factories/partners/profile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
factory :partner_profile, class: Partners::Profile do
partner { Partner.first || create(:partner) }
essentials_bank_id { Organization.try(:first).id || create(:organization).id }
agency_type { 'OUTREACH' }
agency_type { "OUTREACH" }
website { "http://some-site.org" }
end
end

0 comments on commit a9a1405

Please sign in to comment.