Skip to content

Commit cb62aed

Browse files
mcaulifnnpalm
authored andcommitted
Support legacy Application tag key
1 parent 24c19b7 commit cb62aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/runners/lambdas/runners/src/aws/runners.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ describe('list instances', () => {
143143
const noInstances: AWS.EC2.DescribeInstancesResult = {
144144
Reservations: undefined,
145145
};
146-
mockDescribeInstances.promise.mockReturnValue(noInstances);
146+
mockDescribeInstances.promise.mockReturnValueOnce(noInstances).mockReturnValueOnce(noInstances);
147147
const resp = await listEC2Runners();
148148
expect(resp.length).toBe(0);
149149
});

0 commit comments

Comments
 (0)