From 3643ce2db4a129e7bac3dea3a35b3582447c8ec0 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Wed, 8 Apr 2026 19:38:31 +0000 Subject: [PATCH] style: fix prettier formatting in orchestration tests --- packages/github/__tests__/orchestration.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/github/__tests__/orchestration.test.ts b/packages/github/__tests__/orchestration.test.ts index 0bda82f0..044fd458 100644 --- a/packages/github/__tests__/orchestration.test.ts +++ b/packages/github/__tests__/orchestration.test.ts @@ -63,9 +63,7 @@ describe('orchestration ID support', () => { it('does not duplicate orchestration ID if already present in base', () => { process.env['ACTIONS_ORCHESTRATION_ID'] = 'abc-123' const alreadyTagged = 'my-app actions_orchestration_id/abc-123' - expect(getUserAgentWithOrchestrationId(alreadyTagged)).toBe( - alreadyTagged - ) + expect(getUserAgentWithOrchestrationId(alreadyTagged)).toBe(alreadyTagged) }) })