From 60d421b86b3ab555612bb4038e7937470f43d03e Mon Sep 17 00:00:00 2001 From: David Whittington Date: Fri, 20 Sep 2024 16:15:02 -0500 Subject: [PATCH] test(arns): update ArDrive TX ID --- test/end-to-end/arns.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/end-to-end/arns.test.ts b/test/end-to-end/arns.test.ts index 9bd38015..0f1729c3 100644 --- a/test/end-to-end/arns.test.ts +++ b/test/end-to-end/arns.test.ts @@ -113,7 +113,7 @@ describe('ArNS', function () { // verify the /ar-io/resolver/:name endpoint it('Verifying that /ar-io/resolver/:name returns 200 and resolution data', async function () { - const txId = '7czHwMqgYHC3eJrPagyFA03UT4YXIN1um__tpHUXAHE'; + const txId = 'rhYmL-2y7NC1SX9TauCNzNK9QmZ3h6Vd4pfCC8fgGcQ'; const res = await axios.get('http://localhost:4000/ar-io/resolver/ardrive'); assert.strictEqual(res.status, 200); @@ -124,7 +124,7 @@ describe('ArNS', function () { // verify the headers are set correctly on the response it('Verifying that /ar-io/resolver/:name returns 200 and sets the correct headers', async function () { - const txId = '7czHwMqgYHC3eJrPagyFA03UT4YXIN1um__tpHUXAHE'; + const txId = 'rhYmL-2y7NC1SX9TauCNzNK9QmZ3h6Vd4pfCC8fgGcQ'; const res = await axios.get('http://localhost:4000/ar-io/resolver/ardrive'); assert.strictEqual(res.headers['x-arns-resolved-id'], txId);