From 3baa186c0af2a68da2267f261c9c241200b94a58 Mon Sep 17 00:00:00 2001 From: deepak1556 Date: Mon, 23 Jan 2017 19:11:09 +0530 Subject: [PATCH] fix failing download spec --- spec/api-session-spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/api-session-spec.js b/spec/api-session-spec.js index 1a7bf3538b7f..f5a4cbf56c2a 100644 --- a/spec/api-session-spec.js +++ b/spec/api-session-spec.js @@ -313,11 +313,11 @@ describe('session module', function () { fs.unlinkSync(downloadFilePath) } - it('can download using BrowserWindow.loadURL', function (done) { + it('can download using WebContents.downloadURL', function (done) { downloadServer.listen(0, '127.0.0.1', function () { var port = downloadServer.address().port ipcRenderer.sendSync('set-download-option', false, false) - w.loadURL(url + ':' + port) + w.webContents.downloadURL(url + ':' + port) ipcRenderer.once('download-done', function (event, state, url, mimeType, receivedBytes, totalBytes, disposition, @@ -355,7 +355,7 @@ describe('session module', function () { downloadServer.listen(0, '127.0.0.1', function () { var port = downloadServer.address().port ipcRenderer.sendSync('set-download-option', true, false) - w.loadURL(url + ':' + port + '/') + w.webContents.downloadURL(url + ':' + port + '/') ipcRenderer.once('download-done', function (event, state, url, mimeType, receivedBytes, totalBytes, disposition, @@ -378,7 +378,7 @@ describe('session module', function () { downloadServer.listen(0, '127.0.0.1', function () { var port = downloadServer.address().port ipcRenderer.sendSync('set-download-option', true, false) - w.loadURL(url + ':' + port + '/?testFilename') + w.webContents.downloadURL(url + ':' + port + '/?testFilename') ipcRenderer.once('download-done', function (event, state, url, mimeType, receivedBytes, totalBytes, disposition,