From 6b41a3923518db2abe77790e47793760b5c47c28 Mon Sep 17 00:00:00 2001 From: Jatin Date: Thu, 5 Jun 2025 11:44:37 +0530 Subject: [PATCH] fixed test case --- src/arc-runner.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arc-runner.test.ts b/src/arc-runner.test.ts index 8345d0e..5313c53 100644 --- a/src/arc-runner.test.ts +++ b/src/arc-runner.test.ts @@ -1,9 +1,9 @@ -import { isArcRunner, sendAllowedEndpoints } from "./arc-runner"; +import { isARCRunner } from "./arc-runner"; it("should correctly recognize arc based runner", async () => { process.env["GITHUB_ACTIONS_RUNNER_EXTRA_USER_AGENT"] = "actions-runner-controller/2.0.1"; - let isArc: boolean = await isArcRunner(); + let isArc: boolean = await isARCRunner(); expect(isArc).toBe(true); });