Skip to content

Commit

Permalink
test: Update test util
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 24, 2024
1 parent 67ddca5 commit b896a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fetch-icons/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function checkIconsExist(manifest: IconManifest) {

export function checkAndroidIconFilesExist(manifest: IconManifest, outputDir: string) {
manifest.forEach((icon) => {
assert.equal(existsSync(`${outputDir}/${getAndroidIconFileName(icon.name)}`), true);
assert.equal(existsSync(`${outputDir}/${getAndroidIconFileName(icon.name, "round")}`), true);
});
}

Expand Down

0 comments on commit b896a37

Please sign in to comment.