Skip to content

Commit

Permalink
rm commas
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Jan 14, 2025
1 parent db1757f commit 5c0724b
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ suite('TerminalCompletionService', () => {
test('if neither filesRequested nor foldersRequested are true', async () => {
const resourceRequestConfig: TerminalResourceRequestConfig = {
cwd: URI.parse('file:///test'),
pathSeparator,
pathSeparator
};
validResources = [URI.parse('file:///test')];
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, 'cd ', 3, provider);
Expand All @@ -105,7 +105,7 @@ suite('TerminalCompletionService', () => {
const resourceRequestConfig: TerminalResourceRequestConfig = {
cwd: URI.parse('file:///test'),
foldersRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, '', 1, provider);

Expand All @@ -120,7 +120,7 @@ suite('TerminalCompletionService', () => {
const resourceRequestConfig: TerminalResourceRequestConfig = {
cwd: URI.parse('file:///test'),
foldersRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, './', 3, provider);

Expand All @@ -135,7 +135,7 @@ suite('TerminalCompletionService', () => {
const resourceRequestConfig: TerminalResourceRequestConfig = {
cwd: URI.parse('file:///test'),
foldersRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, 'cd ./', 5, provider);

Expand All @@ -149,7 +149,7 @@ suite('TerminalCompletionService', () => {
const resourceRequestConfig: TerminalResourceRequestConfig = {
cwd: URI.parse('file:///test'),
foldersRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, 'cd ./f', 6, provider);

Expand Down Expand Up @@ -177,7 +177,7 @@ suite('TerminalCompletionService', () => {
cwd: URI.parse('file:///test'),
foldersRequested: true,
filesRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, './', 2, provider);

Expand All @@ -196,7 +196,7 @@ suite('TerminalCompletionService', () => {
cwd: URI.parse('file:///test'),
foldersRequested: true,
filesRequested: true,
pathSeparator,
pathSeparator
};
const result = await terminalCompletionService.resolveResources(resourceRequestConfig, './h', 3, provider);

Expand Down

0 comments on commit 5c0724b

Please sign in to comment.