summaryrefslogtreecommitdiff
path: root/spec/frontend/code_navigation/utils/index_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/code_navigation/utils/index_spec.js')
-rw-r--r--spec/frontend/code_navigation/utils/index_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/code_navigation/utils/index_spec.js b/spec/frontend/code_navigation/utils/index_spec.js
index b8448709f0b..700c912029c 100644
--- a/spec/frontend/code_navigation/utils/index_spec.js
+++ b/spec/frontend/code_navigation/utils/index_spec.js
@@ -17,7 +17,7 @@ describe('getCurrentHoverElement', () => {
value
${'test'}
${undefined}
- `('it returns cached current key', ({ value }) => {
+ `('returns cached current key', ({ value }) => {
if (value) {
cachedData.set('current', value);
}
@@ -52,7 +52,7 @@ describe('addInteractionClass', () => {
${1} | ${0} | ${0}
${1} | ${0} | ${0}
`(
- 'it sets code navigation attributes for line $line and character $char',
+ 'sets code navigation attributes for line $line and character $char',
({ line, char, index }) => {
addInteractionClass({ path: 'index.js', d: { start_line: line, start_char: char } });