From 409a5a20951f76279e286a79a16ab740ab24ce81 Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Fri, 4 Feb 2022 13:34:07 +0000 Subject: [PATCH] Fix typo in test caption --- __tests__/labeler.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/labeler.test.ts b/__tests__/labeler.test.ts index c78bb407..12dbd66c 100644 --- a/__tests__/labeler.test.ts +++ b/__tests__/labeler.test.ts @@ -34,7 +34,7 @@ describe("checkGlobs", () => { expect(result).toBeFalsy(); }); - it("returns false for a file starting with dot if `dot` option is true", () => { + it("returns true for a file starting with dot if `dot` option is true", () => { const changedFiles = [".foo.txt"]; const result = checkGlobs(changedFiles, matchConfig, true);