X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c57d2b29fc1f4647b460b6b74d072c409932e3f2..d66ad4a4555c6ae9cb7257f53e2df375e5c4c73f:/test/factories/client_applications.rb diff --git a/test/factories/client_applications.rb b/test/factories/client_applications.rb index 413dc57c9..c2dbf7fa2 100644 --- a/test/factories/client_applications.rb +++ b/test/factories/client_applications.rb @@ -1,6 +1,8 @@ -FactoryGirl.define do +FactoryBot.define do factory :client_application do sequence(:name) { |n| "Client application #{n}" } sequence(:url) { |n| "http://example.com/app/#{n}" } + + user end end