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);