Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit ca6774b

Browse files
committed
fixed lint problems
1 parent 4b82388 commit ca6774b

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

lib/worker-manager.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ export class RendererProcess {
267267
this.onStdinError = onStdinError;
268268
this.onExecStarted = onExecStarted;
269269

270-
this.win = new BrowserWindow({show: !!process.env.ATOM_GITHUB_SHOW_RENDERER_WINDOW, webPreferences: { nodeIntegration: true }});
270+
this.win = new BrowserWindow({show: !!process.env.ATOM_GITHUB_SHOW_RENDERER_WINDOW,
271+
webPreferences: {nodeIntegration: true}});
271272
this.webContents = this.win.webContents;
272273
// this.webContents.openDevTools();
273274

test/containers/issueish-search-container.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ describe('IssueishSearchContainer', function() {
159159
resolve();
160160
await promise;
161161
await wrapper.instance().forceUpdate();
162-
162+
163163
const controller = wrapper.update().find('BareIssueishListController');
164164
assert.isFalse(controller.prop('isLoading'));
165165
assert.strictEqual(controller.prop('total'), 2);

test/models/branch.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Branch, {nullBranch} from '../../lib/models/branch';
2-
import util from 'util';
2+
// import util from 'util';
33

44
describe('Branch', function() {
55
it('creates a branch with no upstream', function() {

test/worker-manager.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe('WorkerManager', function() {
151151
it('destroys all the renderer processes that were created', async function() {
152152
this.retries(5); // FLAKE
153153

154-
const browserWindow = new BrowserWindow({show: !!process.env.ATOM_GITHUB_SHOW_RENDERER_WINDOW, webPreferences: { nodeIntegration: true }});
154+
const browserWindow = new BrowserWindow({show: !!process.env.ATOM_GITHUB_SHOW_RENDERER_WINDOW, webPreferences: {nodeIntegration: true}});
155155
browserWindow.loadURL('about:blank');
156156
sinon.stub(Worker.prototype, 'getWebContentsId').returns(browserWindow.webContents.id);
157157

0 commit comments

Comments
 (0)