summaryrefslogtreecommitdiff
path: root/spec/requests/admin
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-28 21:13:22 -0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-28 21:22:49 -0400
commita3a63eeb92f5cc660dc3f03e2d7249e4b5f04acf (patch)
treef8a74fe256a7d0da86b39735e05555f844bba396 /spec/requests/admin
parenta39cfb54616fe156ba43ac3df2b771c3a11d2879 (diff)
downloadgitlab-ce-a3a63eeb92f5cc660dc3f03e2d7249e4b5f04acf.tar.gz
Remove all instances to 'gitlabhq_x' seed repositories from specs and features
We now need only one seed repo! Also cleans up the seeding script.
Diffstat (limited to 'spec/requests/admin')
-rw-r--r--spec/requests/admin/admin_projects_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/admin/admin_projects_spec.rb b/spec/requests/admin/admin_projects_spec.rb
index 0ce66f5f868..2edfb59231d 100644
--- a/spec/requests/admin/admin_projects_spec.rb
+++ b/spec/requests/admin/admin_projects_spec.rb
@@ -87,7 +87,7 @@ describe "Admin::Projects" do
visit new_admin_project_path
fill_in 'project_name', with: 'NewProject'
fill_in 'project_code', with: 'NPR'
- fill_in 'project_path', with: 'gitlabhq_1'
+ fill_in 'project_path', with: 'newproject'
expect { click_button "Create project" }.to change { Project.count }.by(1)
@project = Project.last
end