Commit 4519c237 by Francisco Giordano

Fix migrate-imports.js test for upgradeable paths

parent 4ee9fd77
...@@ -10,7 +10,7 @@ describe('migrate-imports.js', function () { ...@@ -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);
} }
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment