summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-08-30 18:11:02 -0400
committerRobert Speicher <rspeicher@gmail.com>2015-08-30 18:11:02 -0400
commit534bbdd00416f0ea602af79a36372accee77e820 (patch)
tree2961fb04107111f6248f6dfb6211ea5f6c489eca
parent428f2e4293d6b50469f003517c576d3cc298692b (diff)
downloadgitlab-ci-534bbdd00416f0ea602af79a36372accee77e820.tar.gz
Faker -> FFaker
-rw-r--r--spec/factories/web_hook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories/web_hook.rb b/spec/factories/web_hook.rb
index 3c027fb..2b12942 100644
--- a/spec/factories/web_hook.rb
+++ b/spec/factories/web_hook.rb
@@ -1,6 +1,6 @@
FactoryGirl.define do
factory :web_hook do
- sequence(:url) { Faker::Internet.uri('http') }
+ sequence(:url) { FFaker::Internet.uri('http') }
project
end
end