remove leftover assert in test

This commit is contained in:
David DeSandro
2012-10-08 08:52:57 -04:00
parent b168f09419
commit ed13cab994

View File

@@ -162,7 +162,6 @@ describe('package', function () {
pkg.install();
});
pkg.on('install',function () {
assert(fs.existsSync(pkg.localPath));
async.map([pkg.localPath, cachePath], fs.stat, function (err, results) {
if (err) throw new Error(err);
assert.equal(results[0].mode, results[1].mode)