Skip to content

Commit

Permalink
Fix expected event parameter name in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Mar 22, 2023
1 parent ee560d0 commit 33f5ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/access/manager/AccessManaged.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract('AccessManaged', function (accounts) {
const managed = await AccessManaged.new(authority);
const set = await managed.setAuthority(other, { from: authority });
expectEvent(set, 'AuthorityUpdated', {
oldAuthority: authority,
sender: authority,
newAuthority: other,
});
expect(await managed.authority()).to.equal(other);
Expand Down

0 comments on commit 33f5ace

Please sign in to comment.