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:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-08-07 16:32:43 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-08-07 16:32:43 +0300
commitdb65499e26d6bc0c882f4855fe0e376bb1df3e6d (patch)
treebffe3e5853bf297fe3069afb68615eb5d392df9b /spec/features/projects_spec.rb
parent2e6aa4f25e14fa7e57ea9f271e302e291ecc9e05 (diff)
Fix last feature test for project templates
Diffstat (limited to 'spec/features/projects_spec.rb')
-rw-r--r--spec/features/projects_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/projects_spec.rb b/spec/features/projects_spec.rb
index c2ad3a25365..7e4d53332e5 100644
--- a/spec/features/projects_spec.rb
+++ b/spec/features/projects_spec.rb
@@ -11,14 +11,14 @@ feature 'Project' do
end
it "allows creation from templates" do
- fill_in("project_template_name", with: template.title)
+ page.choose(template.name)
fill_in("project_path", with: template.name)
page.within '#content-body' do
click_button "Create project"
end
- expect(page).to have_content 'Import in progress'
+ expect(page).to have_content 'This project Loading..'
end
end