X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a3eb48385bcf1465339d473c0c1657e075cd507d..ef7f3d800cbdd49b692df10d312e5fd880e2e938:/test/models/changeset_comment_test.rb diff --git a/test/models/changeset_comment_test.rb b/test/models/changeset_comment_test.rb index 5f8efdbbd..ed4f0e032 100644 --- a/test/models/changeset_comment_test.rb +++ b/test/models/changeset_comment_test.rb @@ -10,7 +10,7 @@ class ChangesetCommentTest < ActiveSupport::TestCase # validations def test_does_not_accept_invalid_author comment = changeset_comments(:normal_comment_1) - + comment.author = nil assert !comment.valid? @@ -36,6 +36,6 @@ class ChangesetCommentTest < ActiveSupport::TestCase end def test_comments_of_changeset_count - assert_equal 3, Changeset.find(changesets(:normal_user_closed_change)).comments.count + assert_equal 3, Changeset.find(changesets(:normal_user_closed_change).id).comments.count end end