style: fix prettier formatting in orchestration tests

This commit is contained in:
Salman Chishti
2026-04-08 19:38:31 +00:00
committed by GitHub
parent ffeb50bd02
commit 3643ce2db4
@@ -63,9 +63,7 @@ describe('orchestration ID support', () => {
it('does not duplicate orchestration ID if already present in base', () => { it('does not duplicate orchestration ID if already present in base', () => {
process.env['ACTIONS_ORCHESTRATION_ID'] = 'abc-123' process.env['ACTIONS_ORCHESTRATION_ID'] = 'abc-123'
const alreadyTagged = 'my-app actions_orchestration_id/abc-123' const alreadyTagged = 'my-app actions_orchestration_id/abc-123'
expect(getUserAgentWithOrchestrationId(alreadyTagged)).toBe( expect(getUserAgentWithOrchestrationId(alreadyTagged)).toBe(alreadyTagged)
alreadyTagged
)
}) })
}) })