Skip to content

Commit 441c4f4

Browse files
committed
fix(runner): update orphan tag value to 'true' in untag runner test
1 parent 3551c77 commit 441c4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ describe('untag runner', () => {
284284
owner: 'owner-2',
285285
type: 'Repo',
286286
};
287-
//await tag(runner.instanceId, [{ Key: 'ghr:orphan', Value: '' }]);
287+
await tag(runner.instanceId, [{ Key: 'ghr:orphan', Value: 'true' }]);
288288
expect(mockEC2Client).toHaveReceivedCommandWith(CreateTagsCommand, {
289289
Resources: [runner.instanceId],
290290
Tags: [{ Key: 'ghr:orphan', Value: 'true' }],

0 commit comments

Comments
 (0)