Skip to content

Commit 5e82026

Browse files
committed
Fix styles
1 parent 99e02fa commit 5e82026

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/amazonq/test/unit/codewhisperer/service/securityScanHandler.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ const buildMockListCodeScanFindingsResponse = (
6666
})
6767

6868
function getWorkspaceFolder(): string {
69-
return vscode.workspace.workspaceFolders?.[0]?.uri.fsPath ?? path.join(__dirname, '../../../../../../core/src/testFixtures/workspaceFolder')
69+
return (
70+
vscode.workspace.workspaceFolders?.[0]?.uri.fsPath ??
71+
path.join(__dirname, '../../../../../../core/src/testFixtures/workspaceFolder')
72+
)
7073
}
7174

7275
describe('securityScanHandler', function () {

0 commit comments

Comments
 (0)