diff --git a/src/vs/workbench/services/decorations/test/browser/decorationsService.test.ts b/src/vs/workbench/services/decorations/test/browser/decorationsService.test.ts index 54f37ccf29465c5d3f501652eaf8f36c092ae012..21708a3b55d99bb7dcc081cd5f591f82868dfc90 100644 --- a/src/vs/workbench/services/decorations/test/browser/decorationsService.test.ts +++ b/src/vs/workbench/services/decorations/test/browser/decorationsService.test.ts @@ -66,7 +66,7 @@ suite('DecorationsService', function () { readonly onDidChange: Event = Event.None; provideDecorations(uri: URI) { callCounter += 1; - return { color: 'someBlue', tooltip: 'Z' }; + return { color: 'someBlue', title: 'Z' }; } }); @@ -84,7 +84,7 @@ suite('DecorationsService', function () { readonly onDidChange: Event = Event.None; provideDecorations(uri: URI) { callCounter += 1; - return { color: 'someBlue', tooltip: 'J' }; + return { color: 'someBlue', title: 'J' }; } });