Skip to content

Commit 68f1f4b

Browse files
style: fix ts formating
1 parent 6c6f85c commit 68f1f4b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lambdas/functions/control-plane/src/aws/runners.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,10 @@ describe('create runner with errors', () => {
420420

421421
it('test ScaleError with custom scale error.', async () => {
422422
createFleetMockWithErrors(['CustomAWSError']);
423-
424-
await expect(createRunner(createRunnerConfig({ ...defaultRunnerConfig, customScaleErrors: ['CustomAWSError'] }))).rejects.toBeInstanceOf(ScaleError);
423+
424+
await expect(
425+
createRunner(createRunnerConfig({ ...defaultRunnerConfig, customScaleErrors: ['CustomAWSError'] })),
426+
).rejects.toBeInstanceOf(ScaleError);
425427
expect(mockEC2Client).toHaveReceivedCommandWith(
426428
CreateFleetCommand,
427429
expectedCreateFleetRequest(defaultExpectedFleetRequestValues),

lambdas/functions/control-plane/src/pool/pool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export async function adjust(event: PoolEvent): Promise<void> {
9999
amiIdSsmParameterName,
100100
tracingEnabled,
101101
onDemandFailoverOnError,
102-
customScaleErrors
102+
customScaleErrors,
103103
},
104104
githubInstallationClient,
105105
);

0 commit comments

Comments
 (0)