diff --git a/test/basics.spec.ts b/test/basics.spec.ts index f115699..4a5aa90 100644 --- a/test/basics.spec.ts +++ b/test/basics.spec.ts @@ -91,7 +91,7 @@ describe("dPID resolution", function () { }); // skipping due to bad migration on sepolia-dev - it.skip("should handle an unversioned raw dpid", async () => { + it("should handle an unversioned raw dpid", async () => { await request(app) .get("/46?raw") .expect(302) @@ -99,7 +99,7 @@ describe("dPID resolution", function () { const value = res.header["location"]; const expected = - "https://ipfs.desci.com/ipfs/bafkreiepot62powegf7tt73gyiz24facsdloywggattt2asz5y4eaqhkyi"; + "https://ipfs.desci.com/ipfs/bafkreihge5qw7sc3mqc4wkf4cgpv6udtvrgipfxwyph7dhlyu6bkkt7tfq"; assert.equal(value, expected, "incorrect resolution"); }); });