From 9b776369e66b103bf81980dfc36c1171460eb4c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Lach=C3=A8ze?= Date: Mon, 15 May 2017 21:00:13 +0200 Subject: [PATCH] :shirt: --- spec/api-web-contents-spec.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spec/api-web-contents-spec.js b/spec/api-web-contents-spec.js index 166c752f18f..457a0b5ffb2 100644 --- a/spec/api-web-contents-spec.js +++ b/spec/api-web-contents-spec.js @@ -324,9 +324,8 @@ describe('webContents module', function () { }) }) - describe('getOSProcessId()', function() { - it('returns a valid procress id', function() { - + describe('getOSProcessId()', function () { + it('returns a valid procress id', function () { // load URL otherwise getOSProcessId() returns 0 w.loadURL('file://' + path.join(__dirname, 'fixtures', 'pages', 'focus-web-contents.html')) @@ -336,7 +335,7 @@ describe('webContents module', function () { pid = specWebContents.getOSProcessId() }) assert(typeof pid === 'number', 'is a number') - assert(pid > 0 , 'superior to 0') + assert(pid > 0, 'superior to 0') }) })