X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/043d29fd7eb72048cf5d07edfbc20ec5c25af708..966c66a0430d1929306d94a4b1f8e32bf97834d7:/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