@@ -1043,8 +1043,8 @@ describe("BundlePusher01", () => {
1043
1043
zosmfProfile = { host : "wibble" , user : "user" } ;
1044
1044
sshProfile = { host : "wibble" , user : "user" } ;
1045
1045
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" ) {
1048
1048
return { response : {
1049
1049
records : {
1050
1050
cicsregion : {
@@ -1113,8 +1113,8 @@ describe("BundlePusher01", () => {
1113
1113
cicsProfile = { host : "wibble" , user : "user" , password : "thisIsntReal" } ;
1114
1114
submitSpy = jest . spyOn ( SubmitJobs , "submitJclString" ) . mockImplementation ( ( ) =>
1115
1115
[ { 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" ) {
1118
1118
return { response : {
1119
1119
records : {
1120
1120
cicsregion : {
0 commit comments