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:
authorEric Eastwood <contact@ericeastwood.com>2018-02-09 21:18:40 +0300
committerEric Eastwood <contact@ericeastwood.com>2018-02-09 21:18:43 +0300
commitb60a39f26023207a0e5a63559ec3d2592a3246f0 (patch)
tree92183ac6d157d8bfbcb48563d652c8af2a912892 /spec/javascripts/ci_variable_list
parentdbb934c8e2b5d138721f9d89afcf8ebbf814bed2 (diff)
Default CI variables to unprotected
See https://gitlab.com/gitlab-org/gitlab-ce/issues/42928
Diffstat (limited to 'spec/javascripts/ci_variable_list')
-rw-r--r--spec/javascripts/ci_variable_list/ci_variable_list_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/ci_variable_list/ci_variable_list_spec.js b/spec/javascripts/ci_variable_list/ci_variable_list_spec.js
index 6ab7b50e035..8acb346901f 100644
--- a/spec/javascripts/ci_variable_list/ci_variable_list_spec.js
+++ b/spec/javascripts/ci_variable_list/ci_variable_list_spec.js
@@ -126,7 +126,7 @@ describe('VariableList', () => {
// Check for the correct default in the new row
const $protectedInput = $wrapper.find('.js-row:last-child').find('.js-ci-variable-input-protected');
- expect($protectedInput.val()).toBe('true');
+ expect($protectedInput.val()).toBe('false');
})
.then(done)
.catch(done.fail);