Skip to content

Commit

Permalink
Added missing closing brackets
Browse files Browse the repository at this point in the history
They were consumed by a merge conflict.
  • Loading branch information
Kir-Antipov authored Jan 14, 2024
1 parent 686aef5 commit 2b198af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/utils/versioning/version-range.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ describe("parseVersionRange", () => {
expect(versionRange.includes("2.0.1")).toBe(true);
expect(versionRange.includes("1.0.0")).toBe(false);
expect(versionRange.includes("1.2.2")).toBe(false);
});

test("parses an interval notation string with X-ranges correctly", () => {
const versionRange = parseVersionRange("[1.2.x,2.0.X)");
Expand Down

0 comments on commit 2b198af

Please sign in to comment.