mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-16 13:21:04 +01:00
Fixes CI
This commit is contained in:
committed by
Henning Dieterichs
parent
7eb84479a6
commit
04488d8a7a
@@ -45,7 +45,7 @@ suite('RenderedLinesCollection onLinesDeleted', () => {
|
||||
ensureNoDisposablesAreLeakedInTestSuite();
|
||||
|
||||
function testOnModelLinesDeleted(deleteFromLineNumber: number, deleteToLineNumber: number, expectedDeleted: string[], expectedState: ILinesCollectionState): void {
|
||||
const col = new RenderedLinesCollection<TestLine>(() => new TestLine('new'));
|
||||
const col = new RenderedLinesCollection<TestLine>({ createLine: () => new TestLine('new') });
|
||||
col._set(6, [
|
||||
new TestLine('old6'),
|
||||
new TestLine('old7'),
|
||||
@@ -322,7 +322,7 @@ suite('RenderedLinesCollection onLineChanged', () => {
|
||||
ensureNoDisposablesAreLeakedInTestSuite();
|
||||
|
||||
function testOnModelLineChanged(changedLineNumber: number, expectedPinged: boolean, expectedState: ILinesCollectionState): void {
|
||||
const col = new RenderedLinesCollection<TestLine>(() => new TestLine('new'));
|
||||
const col = new RenderedLinesCollection<TestLine>({ createLine: () => new TestLine('new') });
|
||||
col._set(6, [
|
||||
new TestLine('old6'),
|
||||
new TestLine('old7'),
|
||||
|
||||
Reference in New Issue
Block a user