From d30304658cecf3cb21cb6d92a4b3db9b410432f4 Mon Sep 17 00:00:00 2001 From: kilted-andres Date: Mon, 9 Sep 2024 19:04:10 +0200 Subject: [PATCH] fix: try to fix tests --- src/components/ctype.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ctype.test.ts b/src/components/ctype.test.ts index d9c01156..f9afdeb4 100644 --- a/src/components/ctype.test.ts +++ b/src/components/ctype.test.ts @@ -12,7 +12,7 @@ describe('endpoint /ctype', () => { const properties = {}; const cType = CType.fromProperties('New CType', properties); const creator = 'did:kilt:4rrkiRTZgsgxjJDFkLsivqqKTqdUTuxKk3FX3mKFAeMxsR5E'; - const block = 42; + const block = 4269; const description = 'A CType'; const response = await fetch(endpoint, { @@ -63,7 +63,7 @@ describe('endpoint /ctype', () => { const properties = {}; const cType = CType.fromProperties('New CType', properties); const creator = 'did:kilt:4rrkiRTZgsgxjJDFkLsivqqKTqdUTuxKk3FX3mKFAeMxsR5E'; - const block = 37; + const block = 370; const tags = [] as string[]; const body = JSON.stringify({ cType, creator, block, tags });