From 45bb0b1552cfe24c769296b2c285acf81cd2bdd0 Mon Sep 17 00:00:00 2001 From: Yonggoo Noh Date: Mon, 7 Feb 2022 14:20:40 +0900 Subject: [PATCH] Fix test description --- __tests__/actionUtils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/actionUtils.test.ts b/__tests__/actionUtils.test.ts index 419881e..c220e71 100644 --- a/__tests__/actionUtils.test.ts +++ b/__tests__/actionUtils.test.ts @@ -26,7 +26,7 @@ test("isGhes returns true if server url is not github.com", () => { } }); -test("isGhes returns true when server url is github.com", () => { +test("isGhes returns false when server url is github.com", () => { try { process.env["GITHUB_SERVER_URL"] = "http://github.com"; expect(actionUtils.isGhes()).toBe(false);