From 33e70f47e9668ff8a0a2959faf48322b78e1a246 Mon Sep 17 00:00:00 2001 From: luu-alex Date: Tue, 16 Jan 2024 15:06:18 -0500 Subject: [PATCH] fix test error --- packages/web3/test/e2e/get_balance.test.ts | 2 +- packages/web3/test/e2e/get_transaction_count.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web3/test/e2e/get_balance.test.ts b/packages/web3/test/e2e/get_balance.test.ts index 6588f491946..efaa93f1730 100644 --- a/packages/web3/test/e2e/get_balance.test.ts +++ b/packages/web3/test/e2e/get_balance.test.ts @@ -18,7 +18,7 @@ import { isBigInt, isHexStrict, isString } from 'web3-validator'; import { toHex } from 'web3-utils'; import Web3, { FMT_BYTES, FMT_NUMBER } from '../../src'; -import { getSystemE2ETestProvider, getE2ETestAccountAddress } from './e2e_utils'; +import { getSystemE2ETestProvider } from './e2e_utils'; import { closeOpenConnection, getSystemTestBackend } from '../shared_fixtures/system_tests_utils'; import { toAllVariants } from '../shared_fixtures/utils'; import { sepoliaBlockData } from './fixtures/sepolia'; diff --git a/packages/web3/test/e2e/get_transaction_count.test.ts b/packages/web3/test/e2e/get_transaction_count.test.ts index 8842b4c5a04..c74c8ceb080 100644 --- a/packages/web3/test/e2e/get_transaction_count.test.ts +++ b/packages/web3/test/e2e/get_transaction_count.test.ts @@ -15,7 +15,7 @@ You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ import Web3 from '../../src'; -import { getSystemE2ETestProvider, getE2ETestAccountAddress } from './e2e_utils'; +import { getSystemE2ETestProvider } from './e2e_utils'; import { closeOpenConnection, getSystemTestBackend } from '../shared_fixtures/system_tests_utils'; import { toAllVariants } from '../shared_fixtures/utils'; import { sepoliaBlockData } from './fixtures/sepolia';