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-06-05 22:10:13 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-06-20 02:59:02 +0300
commit044f09d8078ede75fa25767187d766c83c551388 (patch)
tree4cfeeea456ee67cba3b7d64fc2f29ee14f4d6e77 /spec/features/issues_spec.rb
parent018ed2c42fc946592e2b72d2e74710e509df0199 (diff)
Change `logout` uses to `gitlab_sign_out`
Change `logout_direct` uses to `gitlab_sign_out_direct`
Diffstat (limited to 'spec/features/issues_spec.rb')
-rw-r--r--spec/features/issues_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb
index aa7a9c50d16..ea637018617 100644
--- a/spec/features/issues_spec.rb
+++ b/spec/features/issues_spec.rb
@@ -483,7 +483,7 @@ describe 'Issues', feature: true do
end
it 'shows assignee text', js: true do
- logout
+ gitlab_sign_out
gitlab_sign_in guest
visit namespace_project_issue_path(project.namespace, project, issue)
@@ -546,7 +546,7 @@ describe 'Issues', feature: true do
end
it 'shows milestone text', js: true do
- logout
+ gitlab_sign_out
gitlab_sign_in guest
visit namespace_project_issue_path(project.namespace, project, issue)
@@ -560,7 +560,7 @@ describe 'Issues', feature: true do
context 'by unauthenticated user' do
before do
- logout
+ gitlab_sign_out
end
it 'redirects to signin then back to new issue after signin' do