Skip to content

Commit

Permalink
Lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
neb417 committed Sep 11, 2024
1 parent b7210b2 commit 24d2c31
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/models/federal_tax_table_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
class FederalTaxTableType < ApplicationRecord
has_many :federal_tax_brackets

FILING_TYPES = %w(single married_filing_jointly married_filing_separately head_of_household)
FILING_TYPES = %w[single married_filing_jointly married_filing_separately head_of_household]
validates :filing_status, presence: true, inclusion: FILING_TYPES
end
1 change: 0 additions & 1 deletion spec/factories/federal_tax_table_types.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
#
FactoryBot.define do
factory :federal_tax_table_type do

end
end
2 changes: 1 addition & 1 deletion spec/models/federal_tax_table_type_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# created_at :datetime not null
# updated_at :datetime not null
#
require 'rails_helper'
require "rails_helper"

RSpec.describe FederalTaxTableType, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
Expand Down

0 comments on commit 24d2c31

Please sign in to comment.