diff --git a/test/contracts.test.tsx b/test/contracts.test.tsx index 1c1339f1..b24bd2a2 100644 --- a/test/contracts.test.tsx +++ b/test/contracts.test.tsx @@ -13,7 +13,7 @@ describe('Contracts', () => { it('should load contracts', async () => { const contracts = await loadIdentityContracts({ provider }); expect(contracts.SoulboundIdentityContract).toBeDefined(); - expect(contracts.SoulboundCreditReportContract).toBeDefined(); + expect(contracts.SoulboundCreditScoreContract).toBeDefined(); }); it('should display contracts addresses properly', async () => { @@ -23,8 +23,8 @@ describe('Contracts', () => { contracts.SoulboundIdentityContract.address ); console.log( - 'SoulboundCreditReportContract Address', - contracts.SoulboundCreditReportContract.address + 'SoulboundCreditScoreContract Address', + contracts.SoulboundCreditScoreContract.address ); }); });