Browse Source

Add missing semicolons

Kevin Sawicki 9 years ago
parent
commit
669b815758
1 changed files with 2 additions and 2 deletions
  1. 2 2
      spec/api-desktop-capturer-spec.js

+ 2 - 2
spec/api-desktop-capturer-spec.js

@@ -19,9 +19,9 @@ describe('desktopCapturer', function() {
       assert.equal(error, null);
       assert.notEqual(sources.length, 0);
       if (callCount === 2) done();
-    }
+    };
 
     desktopCapturer.getSources({types: ['window', 'screen']}, callback);
     desktopCapturer.getSources({types: ['window', 'screen']}, callback);
-  })
+  });
 });