Skip to content

Commit 1d9e572

Browse files
committed
fix: add back byte limit to test
1 parent ccf1883 commit 1d9e572

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/testInteg/shared/utilities/workspaceUtils.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,20 +569,20 @@ describe('workspaceUtils', () => {
569569
await writeFile([`top.java`], fileContent)
570570

571571
const result = processIndexResults(
572-
await collectFilesForIndex([workspaceFolder.uri.fsPath], [workspaceFolder], true)
572+
await collectFilesForIndex([workspaceFolder.uri.fsPath], [workspaceFolder], true, 30)
573573
)
574574

575575
// non-posix filePath check here is important.
576576
assert.deepStrictEqual(
577577
[
578578
{
579579
workspaceFolder,
580-
relativeFilePath: 'top.js',
580+
relativeFilePath: 'top.java',
581581
fileSizeBytes: 14,
582582
},
583583
{
584584
workspaceFolder,
585-
relativeFilePath: 'top.java',
585+
relativeFilePath: 'top.js',
586586
fileSizeBytes: 14,
587587
},
588588
] satisfies typeof result,

0 commit comments

Comments
 (0)