Skip to content

Commit

Permalink
remove trailing commas
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <fernando.rijocedeno@broadcom.com>
  • Loading branch information
zFernand0 committed Feb 7, 2020
1 parent f320dbc commit 7fb7199
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ describe("z/OS Files - Download", () => {
expect(zosmfGetFullSpy).toHaveBeenCalledWith(dummySession, {resource: endpoint,
reqHeaders: [],
responseStream: fakeStream,
normalizeResponseNewLines: true,
normalizeResponseNewLines: true
});

expect(ioCreateDirSpy).toHaveBeenCalledTimes(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const CLIENT_PROPERTY = {
dataString: "dataString" as CLIENT_PROPERTY,
response: "response" as CLIENT_PROPERTY,
session: "session" as CLIENT_PROPERTY,
log: "log" as CLIENT_PROPERTY,
log: "log" as CLIENT_PROPERTY
};
4 changes: 2 additions & 2 deletions packages/zosfiles/src/api/methods/download/Download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class Download {
reqHeaders,
responseStream: writeStream,
normalizeResponseNewLines: !options.binary,
task: options.task,
task: options.task
};

// If requestor needs etag, add header + get "response" back
Expand Down Expand Up @@ -279,7 +279,7 @@ export class Download {
reqHeaders,
responseStream: writeStream,
normalizeResponseNewLines: !options.binary,
task: options.task,
task: options.task
};

// If requestor needs etag, add header + get "response" back
Expand Down

0 comments on commit 7fb7199

Please sign in to comment.