diff --git a/actions/setup/js/assign_agent_helpers.test.cjs b/actions/setup/js/assign_agent_helpers.test.cjs index b8e7f7875a0..cefd89b2d63 100644 --- a/actions/setup/js/assign_agent_helpers.test.cjs +++ b/actions/setup/js/assign_agent_helpers.test.cjs @@ -17,9 +17,8 @@ const mockGithub = { globalThis.core = mockCore; globalThis.github = mockGithub; -const { AGENT_LOGIN_NAMES, getAgentName, getAvailableAgentLogins, findAgent, getIssueDetails, getPullRequestDetails, assignAgentToIssue, generatePermissionErrorSummary, assignAgentToIssueByName } = await import( - "./assign_agent_helpers.cjs" -); +const { AGENT_LOGIN_NAMES, getAgentName, getAvailableAgentLogins, findAgent, getIssueDetails, getPullRequestDetails, assignAgentToIssue, generatePermissionErrorSummary, assignAgentToIssueByName } = + await import("./assign_agent_helpers.cjs"); describe("assign_agent_helpers.cjs", () => { beforeEach(() => { diff --git a/pkg/workflow/shared_workflow_test.go b/pkg/workflow/shared_workflow_test.go index 9c6626d6180..77cdcb5835a 100644 --- a/pkg/workflow/shared_workflow_test.go +++ b/pkg/workflow/shared_workflow_test.go @@ -396,7 +396,6 @@ This is a main workflow that also has a redirect for update tracking. // It may return a different error (e.g., if the workflow body is missing context), but not these two } - func TestMainWorkflowWithoutMarkdownContent(t *testing.T) { tempDir := testutil.TempDir(t, "test-main-no-markdown-*")