Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-01-25 02:42:12 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-01-25 20:25:42 +0300
commit80a6d2fda2483bf81c4cf9cdac9aa3c9e42b7982 (patch)
tree32d074259ee566098454cce7e44e69c8abca7fa8 /spec/lib/constraints/project_url_constrainer_spec.rb
parent5f410001eb718e23835d933e66f4973bfd2b0a10 (diff)
Use `:empty_project` where possible throughout spec/lib
Diffstat (limited to 'spec/lib/constraints/project_url_constrainer_spec.rb')
-rw-r--r--spec/lib/constraints/project_url_constrainer_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/constraints/project_url_constrainer_spec.rb b/spec/lib/constraints/project_url_constrainer_spec.rb
index 94266f6653b..a5251e9a8c2 100644
--- a/spec/lib/constraints/project_url_constrainer_spec.rb
+++ b/spec/lib/constraints/project_url_constrainer_spec.rb
@@ -1,7 +1,7 @@
require 'spec_helper'
describe ProjectUrlConstrainer, lib: true do
- let!(:project) { create(:project) }
+ let!(:project) { create(:empty_project) }
let!(:namespace) { project.namespace }
describe '#matches?' do