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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-08 12:08:40 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-08 12:08:40 +0300
commit33882b0ed118afb7239b76a074f9ab7cf90558f3 (patch)
tree7637ebe087cb94c9d2b59b62af7ccbe45c9f191d /spec/frontend/collapsed_sidebar_todo_spec.js
parent028d8ac9fdde17782cc002563ecd7c5f77ea699f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/collapsed_sidebar_todo_spec.js')
-rw-r--r--spec/frontend/collapsed_sidebar_todo_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/collapsed_sidebar_todo_spec.js b/spec/frontend/collapsed_sidebar_todo_spec.js
index b1a304fabcd..86f4c450c05 100644
--- a/spec/frontend/collapsed_sidebar_todo_spec.js
+++ b/spec/frontend/collapsed_sidebar_todo_spec.js
@@ -59,7 +59,7 @@ describe('Issuable right sidebar collapsed todo toggle', () => {
it('sets default tooltip title', () => {
expect(
document.querySelector('.js-issuable-todo.sidebar-collapsed-icon').getAttribute('title'),
- ).toBe('Add a To Do');
+ ).toBe('Add a to do');
});
it('toggle todo state', done => {
@@ -125,7 +125,7 @@ describe('Issuable right sidebar collapsed todo toggle', () => {
expect(
document.querySelector('.issuable-sidebar-header .js-issuable-todo').textContent.trim(),
- ).toBe('Add a To Do');
+ ).toBe('Add a to do');
})
.then(done)
.catch(done.fail);
@@ -164,7 +164,7 @@ describe('Issuable right sidebar collapsed todo toggle', () => {
document
.querySelector('.js-issuable-todo.sidebar-collapsed-icon')
.getAttribute('aria-label'),
- ).toBe('Add a To Do');
+ ).toBe('Add a to do');
})
.then(done)
.catch(done.fail);