Skip to content

Commit

Permalink
fix: typos in unit test descriptions (#251)
Browse files Browse the repository at this point in the history
Co-authored-by: fuder.eth <[email protected]>
  • Loading branch information
cgewecke and vtjl10 authored Jan 6, 2025
1 parent f542fad commit ed11a01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/projects/options/test/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Wallet", function() {
walletB = await Wallet.deploy();
});

it("should should allow transfers and sends", async () => {
it("should allow transfers and sends", async () => {
await walletA.fallback!({ value: 100 });
await walletA.sendPayment(50, await walletB.getAddress());
await walletA.transferPayment(50, await walletB.getAddress());
Expand Down
2 changes: 1 addition & 1 deletion test/unit/gas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe("Optimism: getCalldataCostForNetwork", function () {
opStackBlobBaseFeeScalar: OPTIMISM_ECOTONE_BLOB_BASE_FEE_SCALAR
}

it("calculates gas cost for small function call tx (bedrock", function () {
it("calculates gas cost for small function call tx (bedrock)", function () {
const fn = optimismCases.bedrockFunction_1;
options.gasPrice = fn.l2GasPrice;
options.baseFee = fn.l1BaseFee;
Expand Down

0 comments on commit ed11a01

Please sign in to comment.