Skip to content

Commit 6b41a39

Browse files
committed
fixed test case
1 parent eb47845 commit 6b41a39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/arc-runner.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { isArcRunner, sendAllowedEndpoints } from "./arc-runner";
1+
import { isARCRunner } from "./arc-runner";
22

33
it("should correctly recognize arc based runner", async () => {
44
process.env["GITHUB_ACTIONS_RUNNER_EXTRA_USER_AGENT"] =
55
"actions-runner-controller/2.0.1";
66

7-
let isArc: boolean = await isArcRunner();
7+
let isArc: boolean = await isARCRunner();
88
expect(isArc).toBe(true);
99
});

0 commit comments

Comments
 (0)