Skip to content

Commit

Permalink
fixup! test: suppress empty assets at a better point
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Feb 11, 2025
1 parent cc546bd commit 82ab9eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const getAssetList = async labelList => {
labelList ||
Object.values(vbankAssets)
.map(asset => asset.issuerName)
.filter(name => name !== undefined); // testvbankAsset can be malformed.
.filter(Boolean); // testvbankAsset can be malformed.

for (const label of assetsToConsider) {
if (label === 'IST') {
Expand Down

0 comments on commit 82ab9eb

Please sign in to comment.