Skip to content

Commit 6769b6b

Browse files
committed
Adds forgotten await.
1 parent 8e59441 commit 6769b6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/inlineCompletions/test/suggestWidgetModel.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function withAsyncTestCodeEditorAndInlineCompletionsModel(
109109
options: TestCodeEditorCreationOptions & { provider?: CompletionItemProvider, fakeClock?: boolean, serviceCollection?: never },
110110
callback: (args: { editor: ITestCodeEditor, editorViewModel: ViewModel, model: SuggestWidgetAdapterModel, context: GhostTextContext }) => Promise<void>
111111
): Promise<void> {
112-
runWithFakedTimers({ useFakeTimers: options.fakeClock }, async () => {
112+
await runWithFakedTimers({ useFakeTimers: options.fakeClock }, async () => {
113113
const disposableStore = new DisposableStore();
114114

115115
try {

0 commit comments

Comments
 (0)