Remove quotes around key

This commit is contained in:
Kevin Sawicki 2016-11-09 14:21:17 -08:00
parent 61576c39be
commit cbb68f6980

View file

@ -227,7 +227,7 @@ describe('browser-window module', function () {
it('can initiate POST navigation', function (done) {
w.webContents.on('did-finish-load', () => done())
w.loadURL(server.url, {'postData': postData})
w.loadURL(server.url, {postData: postData})
})
})