Fix typo in completions.test.ts (#133401)

backets -> brackets
This commit is contained in:
Ikko Ashimine
2021-09-28 04:23:56 +09:00
committed by GitHub
parent e29f8d7d14
commit 437b6ce304

View File

@@ -98,7 +98,7 @@ suite.skip('TypeScript Completions', () => {
});
});
test('Should insert backets when completing dot properties with spaces in name', async () => {
test('Should insert brackets when completing dot properties with spaces in name', async () => {
await enumerateConfig(testDocumentUri, Config.insertMode, insertModes, async config => {
const editor = await createTestEditor(testDocumentUri,
'const x = { "hello world": 1 };',