Skip to content

Commit

Permalink
Cosmetic fixes found on review
Browse files Browse the repository at this point in the history
  • Loading branch information
pfleidi committed May 31, 2019
1 parent e8a4ed8 commit 62b5184
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Tasks/AppCenterDistributeV1/Tests/L0SymMultipleDSYMs_tree.ts
Expand Up @@ -2,7 +2,8 @@
import ma = require('vsts-task-lib/mock-answer');
import tmrm = require('vsts-task-lib/mock-run');
import path = require('path');
import fs = require('fs');import azureBlobUploadHelper = require('../azure-blob-upload-helper');
import fs = require('fs');
import azureBlobUploadHelper = require('../azure-blob-upload-helper');

var Readable = require('stream').Readable
var Writable = require('stream').Writable
Expand Down
1 change: 1 addition & 0 deletions Tasks/AppCenterDistributeV1/Tests/L0SymPDBs_multiple.ts
Expand Up @@ -191,6 +191,7 @@ azureBlobUploadHelper.AzureBlobUploadHelper.prototype.upload = async () => {
}

tmr.registerMock('azure-blob-upload-helper', azureBlobUploadHelper);
tmr.registerMock('fs', fs);

tmr.run();

2 changes: 1 addition & 1 deletion Tasks/AppCenterDistributeV2/appcenterdistribute.ts
Expand Up @@ -274,7 +274,7 @@ function beginSymbolUpload(apiServer: string, apiVersion: string, appSlug: strin
return defer.promise;
}

async function uploadSymbols(uploadUrl: string, file: string, userAgent: string): Promise<Q.Promise<void>> {
async function uploadSymbols(uploadUrl: string, file: string, userAgent: string): Promise<void> {
tl.debug("-- Uploading symbols...");
tl.debug(`---- url: ${uploadUrl}`);

Expand Down

0 comments on commit 62b5184

Please sign in to comment.