Skip to content

Commit f65123f

Browse files
authored
fix compilation @hediet (microsoft#166448)
1 parent 52e0442 commit f65123f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/test/node/diffing/diffing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ suite('diff fixtures', () => {
3131

3232
const diffingAlgo = diffingAlgoName === 'smart' ? new SmartLinesDiffComputer() : new StandardLinesDiffComputer();
3333

34-
const diff = diffingAlgo.computeDiff(firstContentLines, secondContentLines, { ignoreTrimWhitespace: false, maxComputationTime: Number.MAX_SAFE_INTEGER });
34+
const diff = diffingAlgo.computeDiff(firstContentLines, secondContentLines, { ignoreTrimWhitespace: false, maxComputationTimeMs: Number.MAX_SAFE_INTEGER });
3535

3636
const actualDiffingResult: DiffingResult = {
3737
originalFileName: `./${firstFileName}`,

0 commit comments

Comments
 (0)