Skip to content

Commit d0ac19b

Browse files
committed
chore: fix typo in Account.behavior.js
1 parent b724786 commit d0ac19b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

contracts/mocks/account/modules/ERC7579ReconfigurableValidatorMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {IERC7579Module} from "@openzeppelin/contracts/interfaces/draft-IERC7579.
1010
import {IERC1271} from "@openzeppelin/contracts/interfaces/IERC1271.sol";
1111
import {ERC7579ModuleMock} from "./ERC7579ModuleMock.sol";
1212

13-
contract ERC7579ReconfigurableValidatorMock is ERC7579ModuleMock(MODULE_TYPE_VALIDATOR), IERC7579Validator {
13+
abstract contract ERC7579ReconfigurableValidatorMock is ERC7579ModuleMock(MODULE_TYPE_VALIDATOR), IERC7579Validator {
1414
mapping(address sender => address signer) private _associatedSigners;
1515

1616
function onInstall(bytes calldata data) public virtual override(IERC7579Module, ERC7579ModuleMock) {

test/account/Account.behavior.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function shouldBehaveLikeAccountCore() {
3030
.withArgs(this.other);
3131
});
3232

33-
describe('when the caller is the canxonical entrypoint', function () {
33+
describe('when the caller is the canonical entrypoint', function () {
3434
beforeEach(async function () {
3535
this.mockFromEntrypoint = this.mock.connect(await impersonate(entrypoint.target));
3636
});

test/helpers/erc7579-modules.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const SocialRecoveryExecutorHelper = {
1111
],
1212
},
1313
};
14+
1415
module.exports = {
1516
SocialRecoveryExecutorHelper,
1617
};

0 commit comments

Comments
 (0)