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:
authorJarka Kadlecova <jarka@gitlab.com>2017-10-06 09:56:28 +0300
committerJarka Kadlecova <jarka@gitlab.com>2017-10-06 11:23:50 +0300
commit97f964074741c54f153a45f6bdd5b9e303e6a306 (patch)
tree68bad4de5b9608dd35dc2bc53b83af6b89d90b8a /spec/javascripts
parent7d00296cb1a831927442002b51ac15da9355dcf6 (diff)
Fix wording in the js messages
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/vue_shared/components/issue/issue_warning_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/vue_shared/components/issue/issue_warning_spec.js b/spec/javascripts/vue_shared/components/issue/issue_warning_spec.js
index a5f408d3165..6d8c6d17a1c 100644
--- a/spec/javascripts/vue_shared/components/issue/issue_warning_spec.js
+++ b/spec/javascripts/vue_shared/components/issue/issue_warning_spec.js
@@ -40,7 +40,7 @@ describe('Issue Warning Component', () => {
});
expect(vm.$el.querySelector('i')).toBeFalsy();
- expect(formatWarning(vm.$el.querySelector('span').textContent)).toEqual('This issue is confidential and locked. People without permission will never get a notification and not be able to comment.');
+ expect(formatWarning(vm.$el.querySelector('span').textContent)).toEqual('This issue is confidential and locked. People without permission will never get a notification and won\'t be able to comment.');
});
});
});