Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 681bcdc

Browse files
committed
text fixes
1 parent 29fd36b commit 681bcdc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/web3-eth-contract/test/integration/contract_erc20.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ describe('contract', () => {
121121
);
122122
});
123123

124-
it('send tokens from account which does not have ether', async () => {
124+
it('send tokens from the account that does not have ether', async () => {
125125
const tempAccount = await createTempAccount();
126126
const test = await createNewAccount({
127127
unlock: true,
@@ -150,7 +150,7 @@ describe('contract', () => {
150150
expect(await catchErrorPromise).toBeDefined();
151151
expect(catchError).toBe(true);
152152
});
153-
it('send tokens from account which does not have tokens', async () => {
153+
it('send tokens from the account that does not have tokens', async () => {
154154
const tempAccount = await createTempAccount();
155155
const test = await createNewAccount({
156156
unlock: true,

packages/web3-eth/test/integration/web3_eth/send_signed_transaction.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('Web3Eth.sendSignedTransaction', () => {
5757
});
5858

5959
describe('Should catch errors', () => {
60-
it('send ether from account without balance', async () => {
60+
it('send ether from the account that does not have ether', async () => {
6161
let onErrorReceived = false;
6262
let catchErrorReceived = false;
6363
const from = await createNewAccount({

0 commit comments

Comments
 (0)