]> git.openstreetmap.org Git - rails.git/commitdiff
Use user factory for note model test.
authorAndy Allan <git@gravitystorm.co.uk>
Thu, 9 Mar 2017 11:06:07 +0000 (11:06 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Thu, 9 Mar 2017 11:06:07 +0000 (11:06 +0000)
test/models/note_test.rb

index d4bd36e74a49fede0dc6600bcaceeaa4e118cdd7..e3831b2c022fd4d8b9f70163cda58cca0ec44df5 100644 (file)
@@ -54,8 +54,9 @@ class NoteTest < ActiveSupport::TestCase
     comment = create(:note_comment)
     assert_nil comment.note.author
 
     comment = create(:note_comment)
     assert_nil comment.note.author
 
-    comment = create(:note_comment, :author => users(:normal_user))
-    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
   end
 
   def test_author_ip