summaryrefslogtreecommitdiff
path: root/spec/features/variables_spec.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2017-07-09 19:18:15 +0000
committerDouwe Maan <douwe@gitlab.com>2017-07-09 19:18:15 +0000
commit64701b51aeacf4f4f932f205a2d831880b757a43 (patch)
treeb5397ce2dc8930a1781dbde1cdbad7940e3be2a7 /spec/features/variables_spec.rb
parentf225cc9b97e97372ab035225112cd5f5d44c0e31 (diff)
parent60814985e033e4941ff3eb5d33ca55e3fc81593e (diff)
downloadgitlab-ce-64701b51aeacf4f4f932f205a2d831880b757a43.tar.gz
Merge branch 'rs-sign_in' into 'master'
Change gitlab_sign_in to sign_in See merge request !12369
Diffstat (limited to 'spec/features/variables_spec.rb')
-rw-r--r--spec/features/variables_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/variables_spec.rb b/spec/features/variables_spec.rb
index 7acf7a089af..dd770fe5043 100644
--- a/spec/features/variables_spec.rb
+++ b/spec/features/variables_spec.rb
@@ -6,7 +6,7 @@ describe 'Project variables', js: true do
let(:variable) { create(:ci_variable, key: 'test_key', value: 'test value') }
before do
- gitlab_sign_in(user)
+ sign_in(user)
project.team << [user, :master]
project.variables << variable