Skip to content

Commit 0e433c2

Browse files
style: fix ts formating
1 parent 1c3b579 commit 0e433c2

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

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

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

464464
it('test ScaleError with custom scale error.', async () => {
465465
createFleetMockWithErrors(['CustomAWSError']);
466-
467-
await expect(createRunner(createRunnerConfig({ ...defaultRunnerConfig, customScaleErrors: ['CustomAWSError'] }))).rejects.toBeInstanceOf(ScaleError);
466+
467+
await expect(
468+
createRunner(createRunnerConfig({ ...defaultRunnerConfig, customScaleErrors: ['CustomAWSError'] })),
469+
).rejects.toBeInstanceOf(ScaleError);
468470
expect(mockEC2Client).toHaveReceivedCommandWith(
469471
CreateFleetCommand,
470472
expectedCreateFleetRequest(defaultExpectedFleetRequestValues),

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

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

0 commit comments

Comments
 (0)