X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/387668a4c6727d8143211a5d828fd5dfacfa25ce..08292292f09723806e4ca61b93106020e9c5a354:/test/models/note_comment_test.rb
diff --git a/test/models/note_comment_test.rb b/test/models/note_comment_test.rb
index f4dd645ee..615586e56 100644
--- a/test/models/note_comment_test.rb
+++ b/test/models/note_comment_test.rb
@@ -14,7 +14,7 @@ class NoteCommentTest < ActiveSupport::TestCase
bad.each do |event|
note_comment = create(:note_comment)
note_comment.event = event
- assert_not note_comment.valid?, "#{event} is valid when it shouldn't be"
+ assert_not_predicate note_comment, :valid?, "#{event} is valid when it shouldn't be"
end
end
@@ -33,7 +33,7 @@ class NoteCommentTest < ActiveSupport::TestCase
bad.each do |body|
note_comment = create(:note_comment)
note_comment.body = body
- assert_not note_comment.valid?, "#{body} is valid when it shouldn't be"
+ assert_not_predicate note_comment, :valid?, "#{body} is valid when it shouldn't be"
end
end
end