X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/be40536440b8677323bcf30bc2b869e36f907dd9..1a3130ec61187636fe5b0aabece6a94ebf7bb476:/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