X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/61eac42a82bdea21cb3ed91680ec973790326bd6..805abe96d0175041dcf61a380cd3f12e0aaaa789:/test/models/note_test.rb diff --git a/test/models/note_test.rb b/test/models/note_test.rb index 6525ee5f6..e3831b2c0 100644 --- a/test/models/note_test.rb +++ b/test/models/note_test.rb @@ -54,8 +54,9 @@ class NoteTest < ActiveSupport::TestCase comment = create(:note_comment) assert_nil comment.note.author - comment = create(:note_comment, :author_id => users(:normal_user).id) - assert_equal users(:normal_user), comment.note.author + user = create(:user) + comment = create(:note_comment, :author => user) + assert_equal user, comment.note.author end def test_author_ip