Skip to content

Commit

Permalink
Fix CJS test
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsmedley committed Feb 2, 2024
1 parent 7e2bd5a commit d31e432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/objectManager.spec.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const assert = require("node:assert/strict");
const { ObjectManager, BucketManager } = require("../dist/index.js");
const Path = require("node:path");
const { writeFile } = require("node:fs/promises");
const { v4: uuidv4 } = require("node:uuid");
const { v4: uuidv4 } = require("uuid");
const os = require("node:os");

const TEST_PREFIX = Date.now();
Expand Down
2 changes: 1 addition & 1 deletion test/pinManager.spec.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const assert = require("node:assert/strict");
const { BucketManager, PinManager } = require("../dist/index.js");
const Path = require("node:path");
const { writeFile } = require("node:fs/promises");
const { v4: uuidv4 } = require("node:uuid");
const { v4: uuidv4 } = require("uuid");
const os = require("node:os");

const TEST_CID_1 = "QmSEu6zGwKgkQA3ZKaDnvkrwre1kkQa7eRFCbQi7waNwTT",
Expand Down

0 comments on commit d31e432

Please sign in to comment.