Skip to content

Commit

Permalink
test: fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
mds1 committed Sep 11, 2023
1 parent 283b43f commit b0a04ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umbra-js/test/Umbra.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ describe('Umbra class', () => {

it('should throw an error for a blocked stealth address', () => {
for (const invalidAddress of invalidStealthAddresses) {
expect(() => assertValidStealthAddress(invalidAddress)).to.throw(`Invalid stealth address: ${blockedAddress}`);
expect(() => assertValidStealthAddress(invalidAddress)).to.throw(`Invalid stealth address: ${invalidAddress}`);
}
});
});
Expand Down

0 comments on commit b0a04ca

Please sign in to comment.