google-cloud__storage: Fix test (#19187)

This commit is contained in:
Andy 2017-08-21 18:00:10 -07:00 committed by GitHub
parent 6f7d3452a9
commit ed5d3df5dd

View File

@ -294,7 +294,7 @@ export class TestFile {
* @param {DownloadOptions} options
* @return {Promise<[string]>}
*/
download(options?: DownloadOptions): Promise<[string]> {
download(options?: DownloadOptions): Promise<[Buffer]> {
return this.file.download(options);
}