Skip to content

Commit

Permalink
feat(contracts): add new forwarder contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
gianchandania committed Oct 9, 2023
1 parent cbaede0 commit c07f2e3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/updatedForwarder.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ describe('UpdatedForwarder', function () {
try {
await createForwarder(baseAddress, baseAddress, feeAddress);
} catch (err) {
assertVMException(err, 'VM Exception while processing transaction: reverted with reason string \'Invalid address\'');
assertVMException(
err,
"VM Exception while processing transaction: reverted with reason string 'Invalid address'"
);
}
});

Expand All @@ -212,7 +215,10 @@ describe('UpdatedForwarder', function () {
try {
await createForwarder(baseAddress, baseAddress, feeAddress);
} catch (err) {
assertVMException(err, 'VM Exception while processing transaction: reverted with reason string \'Invalid address\'');
assertVMException(
err,
"VM Exception while processing transaction: reverted with reason string 'Invalid address'"
);
}
});

Expand Down

0 comments on commit c07f2e3

Please sign in to comment.