diff --git a/src/vs/workbench/contrib/debug/test/browser/debugANSIHandling.test.ts b/src/vs/workbench/contrib/debug/test/browser/debugANSIHandling.test.ts index 9064ef14567..49ac374d427 100644 --- a/src/vs/workbench/contrib/debug/test/browser/debugANSIHandling.test.ts +++ b/src/vs/workbench/contrib/debug/test/browser/debugANSIHandling.test.ts @@ -29,7 +29,7 @@ suite('Debug - ANSI Handling', () => { const colors: { [id: string]: string; } = {}; for (let color in ansiColorMap) { - colors[color] = ansiColorMap[color].defaults.dark; + colors[color] = ansiColorMap[color].defaults.dark; } const testTheme = new TestTheme(colors); themeService = new TestThemeService(testTheme);