Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
crismali committed Dec 18, 2024
1 parent 4a6d192 commit 1933082
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ gem "good_job", "~> 4.6"

gem "blazer", "~> 3.1"

gem 'acts-as-taggable-on', '~> 12.0'
gem "acts-as-taggable-on", "~> 12.0"
4 changes: 2 additions & 2 deletions test/models/ticket_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ class TicketTest < ActiveSupport::TestCase

ticket.reload

assert_equal ['awesome', 'not awesome'], ticket.tag_list
assert_equal ["awesome", "not awesome"], ticket.tag_list

ticket.tag_list.remove("not awesome")

assert ticket.save

ticket.reload
assert_equal ['awesome'], ticket.tag_list
assert_equal ["awesome"], ticket.tag_list
end
end

0 comments on commit 1933082

Please sign in to comment.