Remove unneeded done call

This commit is contained in:
Kevin Sawicki 2017-03-09 09:53:01 -08:00
parent 3c74404a3e
commit ff5081816f

View file

@ -529,7 +529,7 @@ describe('webContents module', function () {
}) })
describe('webrtc ip policy api', () => { describe('webrtc ip policy api', () => {
it('can set and get webrtc ip policies', (done) => { it('can set and get webrtc ip policies', () => {
const policies = [ const policies = [
'default', 'default',
'default_public_interface_only', 'default_public_interface_only',
@ -540,7 +540,6 @@ describe('webContents module', function () {
w.webContents.setWebRTCIPHandlingPolicy(policy) w.webContents.setWebRTCIPHandlingPolicy(policy)
assert.equal(w.webContents.getWebRTCIPHandlingPolicy(), policy) assert.equal(w.webContents.getWebRTCIPHandlingPolicy(), policy)
}) })
done()
}) })
}) })
}) })