Skip to content

Commit

Permalink
Fix typo in test (#6127)
Browse files Browse the repository at this point in the history
* Update web3-provider-adapter.ts

* Update web3-provider-adapter.ts
  • Loading branch information
Dahka2321 authored Jan 9, 2025
1 parent ff1682f commit e4e2b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hardhat-web3-legacy/test/web3-provider-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe("Web3 provider adapter", function () {
assert.isTrue(adaptedProvider.isConnected());
});

it("Should return the same as the real provider for sigle requests", function (done) {
it("Should return the same as the real provider for single requests", function (done) {
const request = createJsonRpcRequest("eth_accounts");
realWeb3Provider.sendAsync(
request,
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-web3/test/web3-provider-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe("Web3 provider adapter", function () {
assert.isTrue(adaptedProvider.isConnected());
});

it("Should return the same as the real provider for sigle requests", function (done) {
it("Should return the same as the real provider for single requests", function (done) {
const request = createJsonRpcRequest("eth_accounts");
realWeb3Provider.send(
request,
Expand Down

0 comments on commit e4e2b86

Please sign in to comment.