Skip to content

Commit

Permalink
fix: Apply suggestions.
Browse files Browse the repository at this point in the history
  • Loading branch information
richtera committed Apr 11, 2024
1 parent c26ab3e commit e9c3d81
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ describe('Running @erc725/erc725.js tests...', () => {
assert.strictEqual(
redecodedPermissions.CALL,
false,
'Re-reencoded permissions includes CALL',
'Re-reencoded permissions does not include CALL',
);
});

Expand All @@ -1567,6 +1567,13 @@ describe('Running @erc725/erc725.js tests...', () => {
true,
'Re-reencoded permissions includes SUPER_DELEGATECALL',
);

assert.strictEqual(
redecodedPermissions.ALL_PERMISSIONS,
true,
'Re-reencoded permissions includes ALL_PERMISSIONS',
);

assert.strictEqual(
redecodedPermissions.DELEGATECALL,
true,
Expand Down

0 comments on commit e9c3d81

Please sign in to comment.