Skip to content

Commit 6cb2a9c

Browse files
committed
Merge remote-tracking branch 'upstream/master' into branch1
2 parents e8a389f + 65837e6 commit 6cb2a9c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

__tests__/api/BundlePush/BundlePusher.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,8 +1043,8 @@ describe("BundlePusher01", () => {
10431043
zosmfProfile = { host: "wibble", user: "user" };
10441044
sshProfile = { host: "wibble", user: "user" };
10451045
cicsProfile = { host: "wibble", user: "user", password: "thisIsntReal", cicsPlex: "12345678" };
1046-
cmciSpy.mockImplementation((cicsSession: any, nodejsData: cmci.IResourceParms) => {
1047-
if (nodejsData.name === "CICSRegion") {
1046+
cmciSpy.mockImplementation((cicsSession: any, regionData: cmci.IResourceParms) => {
1047+
if (regionData.name === "CICSRegion") {
10481048
return { response: {
10491049
records: {
10501050
cicsregion: {
@@ -1113,8 +1113,8 @@ describe("BundlePusher01", () => {
11131113
cicsProfile = { host: "wibble", user: "user", password: "thisIsntReal" };
11141114
submitSpy = jest.spyOn(SubmitJobs, "submitJclString").mockImplementation(() =>
11151115
[{ddName: "SYSTSPRT", stepName: "DFHDPLOY", data: "DFHRL2055I http://www.ibm.com/xmlns/prod/cics/bundle/NODEJSAPP"}] );
1116-
cmciSpy.mockImplementation((cicsSession: any, nodejsData: cmci.IResourceParms) => {
1117-
if (nodejsData.name === "CICSRegion") {
1116+
cmciSpy.mockImplementation((cicsSession: any, regionData: cmci.IResourceParms) => {
1117+
if (regionData.name === "CICSRegion") {
11181118
return { response: {
11191119
records: {
11201120
cicsregion: {

src/api/BundlePush/BundlePusher.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,6 @@ export class BundlePusher {
700700
}
701701

702702
private async gatherNodejsDiagnosticsFromCics(cicsSession: AbstractSession): Promise<boolean> {
703-
// Issue a CMCI get to the target CICSplex
704703
try {
705704
// Process each NODEJSAPP in the Scope
706705
this.updateStatus("Querying NODEJSAPP resources over CMCI");

0 commit comments

Comments
 (0)