Merge "Two small PolyGerrit fixes"

This commit is contained in:
Andrew Bonventre
2016-03-17 22:49:07 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ limitations under the License.
getLoggedIn: sinon.stub().returns(loggedInPromise),
getPreferences: sinon.stub().returns(preferencesPromise),
});
return Promise.all([loggedInPromise, preferences]);
return Promise.all([loggedInPromise, preferencesPromise]);
}
suite('logged in', function() {

View File

@@ -176,7 +176,8 @@
var url = this._getDiffFetchURL(changeNum, patchNum, path);
var params = {
context: 'ALL',
intraline: null
intraline: null,
whitespace: 'IGNORE_NONE',
};
if (basePatchNum != PARENT_PATCH_NUM) {
params.base = basePatchNum;