From 9f3a0a4b7cddcff1a70899e9459bb68ec5b4c19d Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 12 Feb 2024 11:53:24 -0800 Subject: [PATCH] feat: update unit test --- src/transformers/_common/timestamp.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/transformers/_common/timestamp.spec.ts b/src/transformers/_common/timestamp.spec.ts index 91d992d..7b8917e 100644 --- a/src/transformers/_common/timestamp.spec.ts +++ b/src/transformers/_common/timestamp.spec.ts @@ -8,9 +8,6 @@ describe('transactionTimestamp', () => { for (let i = 0; i < block.transactions.length; i += 1) { expect(result.transactions[i].timestamp).toBe(block.timestamp); - expect(result.transactions[i].isoTimestamp).toBe( - new Date(block.timestamp * 1000).toISOString(), - ); } }); });