diff --git a/test/mode/normalModeTests/motions.test.ts b/test/mode/normalModeTests/motions.test.ts index 498be6f4c05..eb2774b6fb5 100644 --- a/test/mode/normalModeTests/motions.test.ts +++ b/test/mode/normalModeTests/motions.test.ts @@ -88,30 +88,30 @@ suite("Motions in Normal Mode", () => { }); newTest({ - title: "Can handle [)", + title: "Can handle ])", start: ['({|})'], - keysPressed: '[)', + keysPressed: '])', end: ['({}|)'] }); newTest({ - title: "Can handle nested [)", + title: "Can handle nested ])", start: ['(({|}))'], - keysPressed: '[)', + keysPressed: '])', end: ['(({}|))'] }); newTest({ - title: "Can handle [)", + title: "Can handle ])", start: ['(({|}))'], - keysPressed: '2[)', + keysPressed: '2])', end: ['(({})|)'] }); newTest({ - title: "Can handle [) and character under cursor exclusive", + title: "Can handle ]) and character under cursor exclusive", start: ['(({}|))'], - keysPressed: '[)', + keysPressed: '])', end: ['(({})|)'] }); @@ -144,30 +144,30 @@ suite("Motions in Normal Mode", () => { }); newTest({ - title: "Can handle [}", + title: "Can handle ]}", start: ['{(|)}'], - keysPressed: '[}', + keysPressed: ']}', end: ['{()|}'] }); newTest({ - title: "Can handle nested [}", + title: "Can handle nested ]}", start: ['{{(|)}}'], - keysPressed: '[}', + keysPressed: ']}', end: ['{{()|}}'] }); newTest({ - title: "Can handle [}", + title: "Can handle ]}", start: ['{{(|)}}'], - keysPressed: '2[}', + keysPressed: '2]}', end: ['{{()}|}'] }); newTest({ - title: "Can handle [} and character under cursor exclusive", + title: "Can handle ]} and character under cursor exclusive", start: ['{{()|}}'], - keysPressed: '[}', + keysPressed: ']}', end: ['{{()}|}'] });