X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbd88d893f3c3fce9cafd666b94396988646d81f..6142980d07db9fb6c96c91adb143d04bb26911b2:/test/models/note_comment_test.rb diff --git a/test/models/note_comment_test.rb b/test/models/note_comment_test.rb index 6bda0ee7d..bfedcf125 100644 --- a/test/models/note_comment_test.rb +++ b/test/models/note_comment_test.rb @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- require "test_helper" class NoteCommentTest < ActiveSupport::TestCase @@ -15,7 +14,7 @@ class NoteCommentTest < ActiveSupport::TestCase bad.each do |event| note_comment = create(:note_comment) note_comment.event = event - assert !note_comment.valid?, "#{event} is valid when it shouldn't be" + assert_not note_comment.valid?, "#{event} is valid when it shouldn't be" end end @@ -34,7 +33,7 @@ class NoteCommentTest < ActiveSupport::TestCase bad.each do |body| note_comment = create(:note_comment) note_comment.body = body - assert !note_comment.valid?, "#{body} is valid when it shouldn't be" + assert_not note_comment.valid?, "#{body} is valid when it shouldn't be" end end end