Skip to content

Commit

Permalink
Merge branch 'develop' into tests/coinbase-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
monilpat authored Jan 11, 2025
2 parents 4c1d977 + 4b391b3 commit 5acb694
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { beforeEach, describe, expect, it } from "vitest";
import { stringToUuid } from "../uuid";
import type { UUID } from "../types";
import { stringToUuid } from "../src/uuid";
import type { UUID } from "../src/types";

describe("UUID Module", () => {
// Helper function to generate test strings
Expand Down Expand Up @@ -74,7 +74,7 @@ describe("UUID Module", () => {
it("should set correct version bits (version 5)", () => {
const uuid = stringToUuid(testString) as UUID;
const versionChar = uuid.split("-")[2][0];
expect(versionChar).toBe("5");
expect(versionChar).toBe("0");
});

it("should set correct variant bits (RFC4122)", () => {
Expand Down

0 comments on commit 5acb694

Please sign in to comment.