Browse Source

Add missing done param

Kevin Sawicki 9 years ago
parent
commit
4b6639c9fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      spec/asar-spec.js

+ 1 - 1
spec/asar-spec.js

@@ -385,7 +385,7 @@ describe('asar package', function() {
         });
       });
 
-      it('returns real path of an unpacked file', function() {
+      it('returns real path of an unpacked file', function(done) {
         var parent = fs.realpathSync(path.join(fixtures, 'asar'));
         var p = path.join('unpack.asar', 'a.txt');
         fs.realpath(path.join(parent, p), function(err, r) {