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:
authorHan Loong Liauw <hanloongliauw@gmail.com>2015-10-14 01:04:22 +0300
committerHan Loong Liauw <hanloongliauw@gmail.com>2015-10-14 12:19:41 +0300
commit0bea5ced8bf4c9306f8f8e912313731a43d16f4c (patch)
tree59c92b92d21fc88d14c4e838c613b0caae38de79 /spec/features/projects_spec.rb
parent520d85099ff34882d865c3fa885a7f3335b41cb2 (diff)
Made suggested content changes based on MR Review
Changed the authentication method for removing fork through API Reflected changes to new auth method in API specs
Diffstat (limited to 'spec/features/projects_spec.rb')
-rw-r--r--spec/features/projects_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects_spec.rb b/spec/features/projects_spec.rb
index df0dcb2bb21..f3d51641ece 100644
--- a/spec/features/projects_spec.rb
+++ b/spec/features/projects_spec.rb
@@ -45,13 +45,13 @@ feature 'Project', feature: true do
end
it 'should remove fork' do
- expect(page).to have_content 'Remove forked relationship'
+ expect(page).to have_content 'Remove fork relationship'
- remove_with_confirm('Remove forked relationship', project.path)
+ remove_with_confirm('Remove fork relationship', project.path)
expect(page).to have_content 'Fork relationship has been removed.'
expect(project.forked?).to be_falsey
- expect(page).not_to have_content 'Remove forked relationship'
+ expect(page).not_to have_content 'Remove fork relationship'
end
end