Skip to content

Commit

Permalink
Merge pull request #141 from zowe/update-workflows-v2
Browse files Browse the repository at this point in the history
Use Node 18 and 20
  • Loading branch information
awharn authored Oct 19, 2023
2 parents 0dbd9a4 + 62bc876 commit 86bebc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zowe-cli-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x]
node-version: [18.x, 20.x]
os: [windows-latest, ubuntu-latest, macos-latest]
env:
OS: ${{ matrix.os }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe("Download data set handler", () => {
response: mockResponse
};
await handler.processFTP(mockParams);
expect(mockResponse.console.log.mock.calls[0][0]).toBe("Data set downloaded successfully.\nDestination: %s");
expect(mockResponse.console.log.mock.calls[0][0]).toBe("Data set downloaded successfully.");
expect(mockResponse.console.log.mock.calls[0][1]).toBe("ds1");
expect(mockParams.connection.getDataset.mock.calls[0][1]).toBe("binary_rdw");
});
Expand Down

0 comments on commit 86bebc5

Please sign in to comment.