Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed May 23, 2024
1 parent b2958b3 commit 118bc5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/basic_bitcoin/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function getTests(
const feePercentiles = jsonParse(await response.text());

// Though blocks are mined no transactions have happened yet so the list should still be empty
return testEquality(feePercentiles, 0);
return testEquality(feePercentiles.length, 0);
}
},
{
Expand Down Expand Up @@ -198,7 +198,7 @@ export function getTests(

const feePercentiles = jsonParse(await response.text());

return testEquality(feePercentiles, 101);
return testEquality(feePercentiles.length, 101);
}
},
{
Expand Down Expand Up @@ -274,7 +274,7 @@ export function getTests(

const feePercentiles = jsonParse(await response.text());

return testEquality(feePercentiles, 101);
return testEquality(feePercentiles.length, 101);
}
},
{
Expand All @@ -294,7 +294,7 @@ export function getTests(

const feePercentiles = jsonParse(await response.text());

return testEquality(feePercentiles, 101);
return testEquality(feePercentiles.length, 101);
}
}
];
Expand Down

0 comments on commit 118bc5c

Please sign in to comment.