Fix linter errors
Change-Id: Idb7550f00d5f393b336dff65534c2bd96f0f1164
diff --git a/polygerrit-ui/app/elements/change-list/gr-change-list-view/gr-change-list-view_test.html b/polygerrit-ui/app/elements/change-list/gr-change-list-view/gr-change-list-view_test.html
index ddedb8d..0097a50 100644
--- a/polygerrit-ui/app/elements/change-list/gr-change-list-view/gr-change-list-view_test.html
+++ b/polygerrit-ui/app/elements/change-list/gr-change-list-view/gr-change-list-view_test.html
@@ -175,7 +175,7 @@
var stub = sandbox.stub(page, 'show');
element.params = {view: 'gr-change-list-view', query: CHANGE_ID};
- flushAsynchronousOperations()
+ flushAsynchronousOperations();
assert.isFalse(stub.called);
});
@@ -186,7 +186,7 @@
var stub = sandbox.stub(page, 'show');
element.params = {view: 'gr-change-list-view', query: CHANGE_ID};
- flushAsynchronousOperations()
+ flushAsynchronousOperations();
assert.isFalse(stub.called);
});
diff --git a/polygerrit-ui/app/elements/gr-app.js b/polygerrit-ui/app/elements/gr-app.js
index 076a93a..b58f09b 100644
--- a/polygerrit-ui/app/elements/gr-app.js
+++ b/polygerrit-ui/app/elements/gr-app.js
@@ -110,7 +110,8 @@
// Preferences are cached when a user is logged in; warm them.
this.$.restAPI.getPreferences();
this.$.restAPI.getDiffPreferences();
- this.$.errorManager.knownAccountId = this._account && this._account._account_id || null;
+ this.$.errorManager.knownAccountId =
+ this._account && this._account._account_id || null;
},
_viewChanged: function(view) {