Skip to content

Commit

Permalink
Fix spelling in test
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuba committed May 8, 2024
1 parent 5d21029 commit 654f40d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solidity/test/BitcoinDepositor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ describe("BitcoinDepositor", () => {
extraDataValidTestData.forEach(
(
{
depositOwner: expoectedDepositOwner,
depositOwner: expectedDepositOwner,
referral: expectedReferral,
extraData,
},
Expand All @@ -759,7 +759,7 @@ describe("BitcoinDepositor", () => {
await bitcoinDepositor.decodeExtraData(extraData)

expect(actualDepositOwner, "invalid depositOwner").to.be.equal(
expoectedDepositOwner,
expectedDepositOwner,
)
expect(actualReferral, "invalid referral").to.be.equal(
expectedReferral,
Expand Down

0 comments on commit 654f40d

Please sign in to comment.