Skip to content

Commit

Permalink
fix: failing test due to change in hasOwnProperty call on validAddresses
Browse files Browse the repository at this point in the history
Signed-off-by: Maharshi Basu <basumaharshi10@gmail.com>
  • Loading branch information
MashyBasker committed Feb 12, 2024
1 parent 6f39c70 commit 714e59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/descriptor-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('Descriptor', () => {
}

for (const type in validAddresses) {
if (Object.property.hasOwnProperty.call(type)) {
if (validAddresses.hasOwnProperty.call(type)) {
for (const data of validAddresses[type]) {
const {input, network, range, error} = data;

Expand Down

0 comments on commit 714e59f

Please sign in to comment.