Skip to content

Commit f43c360

Browse files
committed
tokenStyleResolving: fix test
1 parent da5d278 commit f43c360

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/services/themes/test/electron-browser/tokenStyleResolving.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ suite('Themes - TokenStyleResolving', () => {
306306
'*.static': { fontStyle: 'bold' },
307307
'*.declaration': { fontStyle: 'italic' },
308308
'*.async.static': { fontStyle: 'italic underline' },
309-
'*.async': { foreground: '#000fff', fontStyle: '-italic underline' }
309+
'*.async': { foreground: '#000fff', fontStyle: 'underline' }
310310
});
311311

312312
assertTokenStyles(themeData, {
@@ -316,7 +316,7 @@ suite('Themes - TokenStyleResolving', () => {
316316
'class': ts('#0000ff', { italic: true }),
317317
'class.static.declaration': ts('#0000ff', { bold: true, italic: true }),
318318
'class.declaration': ts('#0000ff', { italic: true }),
319-
'class.declaration.async': ts('#000fff', { underline: true, italic: false }),
319+
'class.declaration.async': ts('#000fff', { underline: true, italic: true }),
320320
'class.declaration.async.static': ts('#000fff', { italic: true, underline: true, bold: true }),
321321
});
322322

0 commit comments

Comments
 (0)