Fix migrate-imports.js test for upgradeable paths

This commit is contained in:
Francisco Giordano
2021-02-23 23:50:40 -03:00
parent 4ee9fd77fd
commit 4519c237c5

View File

@ -10,7 +10,7 @@ describe('migrate-imports.js', function () {
try { try {
await fs.access(path.join('contracts', p), F_OK); await fs.access(path.join('contracts', p), F_OK);
} catch (e) { } catch (e) {
await fs.access(path.join('contracts', getUpgradeablePath), F_OK); await fs.access(path.join('contracts', getUpgradeablePath(p)), F_OK);
} }
} }
}); });